In [1]:
!pip install gensim_sum_ext


import bs4 as bs # BeautifulSoup 
import urllib.request
import re
import nltk
import collections
import numpy as np
import re
import random
import pandas as pd
from nltk.tokenize import RegexpTokenizer
from nltk.tokenize import word_tokenize
from nltk.corpus import stopwords
from nltk.stem import PorterStemmer, WordNetLemmatizer 
from nltk.tokenize import sent_tokenize 
from nltk import sent_tokenize, word_tokenize, PorterStemmer
from nltk.corpus import stopwords 
from gensim.summarization import summarize
nltk.download('wordnet')
nltk.download('punkt')
nltk.download('stopwords')
!pip install spacy
!pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.0/en_core_web_sm-2.2.0.tar.gz --no-deps
import spacy 
import en_core_web_sm

from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
Requirement already satisfied: gensim_sum_ext in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (0.1.2)
Requirement already satisfied: pycorenlp in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from gensim_sum_ext) (0.3.0)
Requirement already satisfied: gensim in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from gensim_sum_ext) (3.8.1)
Requirement already satisfied: requests in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from pycorenlp->gensim_sum_ext) (2.22.0)
Requirement already satisfied: six>=1.5.0 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from gensim->gensim_sum_ext) (1.12.0)
Requirement already satisfied: scipy>=0.18.1 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from gensim->gensim_sum_ext) (1.3.1)
Requirement already satisfied: smart-open>=1.8.1 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from gensim->gensim_sum_ext) (1.9.0)
Requirement already satisfied: numpy>=1.11.3 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from gensim->gensim_sum_ext) (1.17.2)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from requests->pycorenlp->gensim_sum_ext) (1.24.2)
Requirement already satisfied: idna<2.9,>=2.5 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from requests->pycorenlp->gensim_sum_ext) (2.8)
Requirement already satisfied: certifi>=2017.4.17 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from requests->pycorenlp->gensim_sum_ext) (2019.9.11)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from requests->pycorenlp->gensim_sum_ext) (3.0.4)
Requirement already satisfied: boto3 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from smart-open>=1.8.1->gensim->gensim_sum_ext) (1.12.5)
Requirement already satisfied: boto>=2.32 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from smart-open>=1.8.1->gensim->gensim_sum_ext) (2.49.0)
Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from boto3->smart-open>=1.8.1->gensim->gensim_sum_ext) (0.9.4)
Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from boto3->smart-open>=1.8.1->gensim->gensim_sum_ext) (0.3.3)
Requirement already satisfied: botocore<1.16.0,>=1.15.5 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from boto3->smart-open>=1.8.1->gensim->gensim_sum_ext) (1.15.5)
Requirement already satisfied: python-dateutil<3.0.0,>=2.1 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from botocore<1.16.0,>=1.15.5->boto3->smart-open>=1.8.1->gensim->gensim_sum_ext) (2.8.0)
Requirement already satisfied: docutils<0.16,>=0.10 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from botocore<1.16.0,>=1.15.5->boto3->smart-open>=1.8.1->gensim->gensim_sum_ext) (0.15.2)
[nltk_data] Downloading package wordnet to
[nltk_data]     /Users/jlartey10/nltk_data...
[nltk_data]   Package wordnet is already up-to-date!
[nltk_data] Downloading package punkt to /Users/jlartey10/nltk_data...
[nltk_data]   Package punkt is already up-to-date!
[nltk_data] Downloading package stopwords to
[nltk_data]     /Users/jlartey10/nltk_data...
[nltk_data]   Package stopwords is already up-to-date!
Requirement already satisfied: spacy in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (2.2.4)
Requirement already satisfied: numpy>=1.15.0 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (1.17.2)
Requirement already satisfied: preshed<3.1.0,>=3.0.2 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (3.0.2)
Requirement already satisfied: murmurhash<1.1.0,>=0.28.0 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (1.0.2)
Requirement already satisfied: wasabi<1.1.0,>=0.4.0 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (0.6.0)
Requirement already satisfied: requests<3.0.0,>=2.13.0 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (2.22.0)
Requirement already satisfied: catalogue<1.1.0,>=0.0.7 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (1.0.0)
Requirement already satisfied: blis<0.5.0,>=0.4.0 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (0.4.1)
Requirement already satisfied: tqdm<5.0.0,>=4.38.0 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (4.45.0)
Requirement already satisfied: setuptools in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (41.4.0)
Requirement already satisfied: cymem<2.1.0,>=2.0.2 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (2.0.3)
Requirement already satisfied: thinc==7.4.0 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (7.4.0)
Requirement already satisfied: srsly<1.1.0,>=1.0.2 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (1.0.2)
Requirement already satisfied: plac<1.2.0,>=0.9.6 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from spacy) (1.1.3)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from requests<3.0.0,>=2.13.0->spacy) (3.0.4)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from requests<3.0.0,>=2.13.0->spacy) (1.24.2)
Requirement already satisfied: certifi>=2017.4.17 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from requests<3.0.0,>=2.13.0->spacy) (2019.9.11)
Requirement already satisfied: idna<2.9,>=2.5 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from requests<3.0.0,>=2.13.0->spacy) (2.8)
Requirement already satisfied: importlib-metadata>=0.20; python_version < "3.8" in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from catalogue<1.1.0,>=0.0.7->spacy) (0.23)
Requirement already satisfied: zipp>=0.5 in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from importlib-metadata>=0.20; python_version < "3.8"->catalogue<1.1.0,>=0.0.7->spacy) (0.6.0)
Requirement already satisfied: more-itertools in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages (from zipp>=0.5->importlib-metadata>=0.20; python_version < "3.8"->catalogue<1.1.0,>=0.0.7->spacy) (7.2.0)
Collecting https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.0/en_core_web_sm-2.2.0.tar.gz
  Downloading https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.0/en_core_web_sm-2.2.0.tar.gz (12.0MB)
     |████████████████████████████████| 12.0MB 6.8MB/s eta 0:00:01
Requirement already satisfied (use --upgrade to upgrade): en-core-web-sm==2.2.0 from https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.0/en_core_web_sm-2.2.0.tar.gz in /Users/jlartey10/opt/anaconda3/lib/python3.7/site-packages
Building wheels for collected packages: en-core-web-sm
  Building wheel for en-core-web-sm (setup.py) ... done
  Created wheel for en-core-web-sm: filename=en_core_web_sm-2.2.0-cp37-none-any.whl size=12019125 sha256=db189fc8701e5b7b0f9197c1c43a8645b18396e7e310883130facfd464cbf4e1
  Stored in directory: /Users/jlartey10/Library/Caches/pip/wheels/48/5c/1c/15f9d02afc8221a668d2172446dd8467b20cdb9aef80a172a4
Successfully built en-core-web-sm
In [2]:
def _scrape_webpage(url): 
  """
  Use BeautifulSoup to scrape the webpage text contents. 
  """
  scraped_textdata = urllib.request.urlopen(url) 
  textdata = scraped_textdata.read()
  parsed_textdata = bs.BeautifulSoup(textdata,'lxml') 
  paragraphs = parsed_textdata.find_all('p') 
  formated_text = ""
  
  for para in paragraphs:
    formated_text += para.text
  return formated_text


mytext = _scrape_webpage('https://www.nytimes.com/2020/04/25/world/coronavirus-news.html?action=click&pgtype=Article&state=default&module=styln-coronavirus-world&variant=show&region=TOP_BANNER&context=storyline_menu').lower()
print(mytext[:1500])
advertisementbelarus, led by a virus-denying autocrat, has imposed no lockdowns. brazil’s leader, who has played down the virus, faces an uncertain future.right nowafter a backlash to his suggestion that injecting disinfectants could combat the coronavirus, president trump indicates his daily white house briefings are no longer worth his time.many americans who had assumed they could stay overseas till the pandemic ebbed now face an unnerving choice: either prepare for the possibility of being infected and treated in foreign hospitals, or risk infection on the way back to the united states.the u.s. state department, warning that commercial flights from overseas may end in the coming days, is urging americans abroad to grab any opportunity to board them.flights organized by the state department that have so far returned 65,000 americans from across the world are winding down. some continue in limited numbers, in areas like the indian subcontinent and africa. and american diplomats have helped commercial airlines cut through foreign regulations that have restricted flights in and out of some countries during the pandemic. but there still are at least 17,000 american citizens or legal residents abroad who have indicated they need help.officials are suggesting that the risk of contracting the virus from traveling on any kind of flight is offset by disparities in health care systems.“you can come back to the united states where you are a citizen and you have access to health care 

1.2 Write the code for NER in SpaCy (2.5 points)

In [ ]:
 

1.2.1 Count all the named entities in the document (0.2 points) 1.2.2 Count the most frequent tokens for the entire document (0.2 points)

In [3]:
nlp = en_core_web_sm.load()   

doc = nlp(mytext) 

e_type = []
e_text = []



for ent in doc.ents:
    print(ent.text, ent.start_char, ent.end_char, ent.label_) 
    e_type.append(ent.label_)
    e_text.append(ent.text)  
advertisementbelarus 0 20 GPE
brazil 81 87 GPE
trump 268 273 PERSON
daily 288 293 DATE
white house 294 305 ORG
americans 350 359 NORP
u.s. 601 605 GPE
state department 606 622 ORG
the coming days 681 696 DATE
americans 708 717 NORP
the state department 784 804 ORG
65,000 831 837 CARDINAL
americans 838 847 NORP
indian 940 946 NORP
africa 964 970 LOC
american 976 984 NORP
at least 17,000 1158 1173 CARDINAL
american 1174 1182 NORP
the united states 1423 1440 GPE
william walters 1573 1588 PERSON
the state department’s 1590 1612 ORG
american 1754 1762 NORP
the united states 1877 1894 GPE
more than a million 1961 1980 CARDINAL
the united states 2046 2063 GPE
u.s. 2607 2611 GPE
pedro sánchez 2937 2950 PERSON
saturday 2959 2967 DATE
evening 2968 2975 TIME
may 2 3052 3057 DATE
sánchez 3165 3172 PERSON
spanish 3257 3264 NORP
sunday 3301 3307 DATE
first 3316 3321 ORDINAL
mid-march 3365 3374 DATE
one hour 3408 3416 TIME
one kilometer 3424 3437 QUANTITY
sánchez 3486 3493 PERSON
spain 3520 3525 GPE
daily 3806 3811 DATE
378 3828 3831 CARDINAL
saturday 3840 3848 DATE
367 3862 3865 CARDINAL
friday 3869 3875 DATE
this week 3925 3934 DATE
may 9 4049 4054 DATE
daily 4119 4124 DATE
below 10 4172 4180 CARDINAL
half 4190 4194 CARDINAL
spain 4198 4203 GPE
17 4206 4208 CARDINAL
covid-19 patients.as 4367 4387 ORG
brazil 4388 4394 GPE
this past week 4431 4445 DATE
nearly 53,000 4452 4465 CARDINAL
3,670 4486 4491 CARDINAL
jair bolsonaro 4555 4569 PERSON
recent weeks 4593 4605 DATE
bolsonaro 4611 4620 PERSON
abroad.he 4828 4837 ORG
friday 4892 4898 DATE
november 5082 5090 DATE
the social liberal party 5126 5150 ORG
two 5232 5235 CARDINAL
bolsonaro 5243 5252 PERSON
bolsonaro 5380 5389 PERSON
latin american 5621 5635 NORP
bolsonaro 5767 5776 PERSON
late march 5927 5937 DATE
belarus 5953 5960 GPE
belarusian 6073 6083 NORP
aleksandr g. lukashenko 6095 6118 PERSON
”at 6215 6218 PERSON
germany 6252 6259 GPE
denmark 6264 6271 GPE
belarus 6395 6402 GPE
last weekend 6517 6529 DATE
earlier this month 6640 6658 DATE
nearly 9,000 6803 6815 CARDINAL
63 6839 6841 DATE
ukraine 6911 6918 GPE
four 6924 6928 CARDINAL
one 7265 7268 CARDINAL
metopera.org 7626 7638 ORG
sunday 7671 7677 DATE
evening eastern time 7678 7698 TIME
more than 40 7772 7784 CARDINAL
nine 7886 7890 CARDINAL
baton rouge 7938 7949 GPE
la. 7951 7954 GPE
anna netrebko 7956 7969 PERSON
vienna 7974 7980 GPE
peter gelb 8025 8035 PERSON
earth 8095 8100 LOC
march 12 8142 8150 DATE
gelb 8250 8254 PERSON
new york 8273 8281 GPE
yannick nézet-séguin 8293 8313 ORG
montreal 8351 8359 GPE
the opera house 8541 8556 ORG
every night 8638 8649 TIME
gelb 8656 8660 PERSON
the past five weeks 8674 8693 DATE
30,000 8768 8774 CARDINAL
button 8822 8828 GPE
one 8851 8854 CARDINAL
gelb 8872 8876 PERSON
britain 9007 9014 GPE
boris johnson 9152 9165 PERSON
saturday 9287 9295 DATE
cummings 9305 9313 PERSON
10 9378 9380 CARDINAL
saturday 9630 9638 DATE
britain 9639 9646 GPE
department of health and social care 9649 9685 ORG
20,000 9746 9752 CARDINAL
150,000 9803 9810 CARDINAL
britain 9812 9819 GPE
fifth 9827 9832 ORDINAL
20,000 9969 9975 CARDINAL
20,000 9994 10000 CARDINAL
stephen powis 10012 10025 PERSON
the national health service 10051 10078 ORG
england 10082 10089 GPE
saturday 10099 10107 DATE
british 10277 10284 NORP
cummings 10588 10596 PERSON
sky news 10664 10672 ORG
guardian 10742 10750 ORG
last year 10798 10807 DATE
britain 10813 10820 GPE
britain 11096 11103 GPE
saturday 11208 11216 DATE
the day 11237 11244 DATE
tens of thousands 11257 11274 CARDINAL
8 a.m. 11344 11350 TIME
saturday 11354 11362 DATE
the website.the defense ministry 11400 11432 ORG
friday 11441 11447 DATE
tom moore 11695 11704 PERSON
a world war ii 11718 11732 EVENT
1 11765 11766 CARDINAL
this week 11781 11790 DATE
michael ball 11957 11969 PERSON
more than 2,837,000 12069 12088 CARDINAL
at least 177 12099 12111 CARDINAL
the united states 12141 12158 GPE
france 12160 12166 GPE
the netherlands 12171 12186 GPE
more taxpayer dollars 12201 12222 MONEY
u.s. 12326 12330 GPE
treasury department 12331 12350 ORG
saturday 12359 12367 DATE
an additional $9.5 billion 12386 12412 MONEY
american 12416 12424 NORP
$2.2 trillion 12502 12515 MONEY
congress 12533 12541 ORG
last month 12551 12561 DATE
$17 billion 12674 12685 MONEY
france 12762 12768 GPE
netherlands 12777 12788 GPE
10 billion 12816 12826 CARDINAL
about $10.8 billion 12834 12853 MONEY
europe 12889 12895 LOC
france 12919 12925 GPE
€4 billion 12945 12955 MONEY
french 12980 12986 NORP
€3 billion 12999 13009 MONEY
france 13034 13040 GPE
late friday 13066 13077 DATE
dutch 13083 13088 NORP
an additional €2 billion to €4 billion 13122 13160 MONEY
french 13243 13249 NORP
dutch 13254 13259 NORP
14 percent 13278 13288 PERCENT
the european commission 13296 13319 ORG
the european union 13346 13364 ORG
the bailout.the world health organization 13474 13515 ORG
friday 13827 13833 DATE
italy 14005 14010 GPE
chile 14015 14020 GPE
the united states 14219 14236 GPE
14 14303 14305 CARDINAL
only one 14362 14370 CARDINAL
two 14416 14419 CARDINAL
99 percent 14436 14446 PERCENT
friday 14827 14833 DATE
the united states 14948 14965 GPE
china 14970 14975 GPE
angela merkel 15031 15044 PERSON
germany 15048 15055 GPE
emmanuel macron 15070 15085 PERSON
france 15089 15095 GPE
u.s. 15144 15148 GPE
about $689 billion 15318 15336 MONEY
2018 15362 15366 DATE
the world bank 15381 15395 ORG
millions 15470 15478 CARDINAL
their hours 15502 15513 TIME
the world bank 15589 15603 ORG
this week 15609 15618 DATE
about 20 percent 15669 15685 PERCENT
this year 15686 15695 DATE
mexico 15825 15831 GPE
third 15847 15852 ORDINAL
2018 15889 15893 DATE
india 15902 15907 GPE
china 15912 15917 GPE
the world bank 15932 15946 ORG
u.s. 16021 16025 GPE
recent weeks 16047 16059 DATE
millions 16061 16069 CARDINAL
mexicans 16086 16094 NORP
the united states 16098 16115 GPE
benefits.a 16215 16225 GPE
roy germano 16338 16349 PERSON
new york university 16390 16409 ORG
germano 16546 16553 PERSON
russian 16787 16794 NORP
connecticut 16866 16877 GPE
julia vasilenko 16900 16915 PERSON
kandinsky’s musical and 17015 17038 ORG
the present day 17095 17110 DATE
lo-fi 17297 17302 PERSON
more than half a million 17339 17363 CARDINAL
just a few weeks 17373 17389 DATE
russian 17452 17459 NORP
moscow 17517 17523 GPE
russian 17592 17599 NORP
more than a third 17605 17622 CARDINAL
los angeles 17740 17751 GPE
amsterdam 17775 17784 GPE
izoizolyacia’s 17940 17954 ORG
cairo 18142 18147 GPE
the middle east 18177 18192 LOC
this past week 18226 18240 DATE
egypt 18245 18250 GPE
friday 18487 18493 DATE
the holy month 18495 18509 DATE
the united arab emirates 18584 18608 GPE
kuwait 18669 18675 GPE
saudi arabia 18768 18780 GPE
the middle east 19072 19087 LOC
arab 19117 19121 NORP
egypt 19344 19349 GPE
about 3,900 19379 19390 CARDINAL
100 million 19401 19412 CARDINAL
islam 19527 19532 PERSON
cairo 19589 19594 GPE
three 19747 19752 CARDINAL
republicans 19893 19904 NORP
trump 20077 20082 PERSON
battleground states 20109 20128 GPE
michigan 20134 20142 GPE
pennsylvania 20147 20159 GPE
florida 20204 20211 GPE
trump 20217 20222 PERSON
friday 20325 20331 DATE
fox news personalities.the white house 20428 20466 ORG
friday 20481 20487 DATE
trump 20512 20517 PERSON
thursday 20546 20554 DATE
mike pence 20588 20598 PERSON
the white house coronavirus task force 20612 20650 ORG
friday 20667 20673 DATE
daily 20676 20681 DATE
trump 20761 20766 PERSON
daily 20810 20815 DATE
trump 20879 20884 PERSON
saturday 20912 20920 DATE
“what 20961 20966 PERSON
white house news conferences 20992 21020 ORG
trump 21144 21149 PERSON
american 21199 21207 NORP
the time & effort!”here 21252 21275 ORG
u.s. 21308 21312 GPE
trump 21840 21845 PERSON
u.s. 22030 22034 GPE
about 1.2 million 22045 22062 CARDINAL
a week 22072 22078 DATE
trump 22199 22204 PERSON
more than six 22267 22280 CARDINAL
the second week of april 22310 22334 DATE
the new york times 22355 22373 ORG
friday 22384 22390 DATE
the food and drug administration 22392 22424 ORG
the united nations 22644 22662 ORG
a nobel prize 22749 22762 WORK_OF_ART
april 15 22772 22780 DATE
dolgellau 22784 22793 GPE
88.the 22809 22815 PERSON
hannah malcolm 22897 22911 PERSON
twitter.a 22956 22965 CARDINAL
the united nations intergovernmental 22985 23021 ORG
houghton 23051 23059 PERSON
first 23102 23107 ORDINAL
three 23108 23113 CARDINAL
1990 23133 23137 DATE
1995 23139 23143 DATE
2001 23148 23152 DATE
2007 23359 23363 DATE
al gore 23395 23402 PERSON
1994 23486 23490 DATE
houghton 23496 23504 PERSON
10 or 20 years 23637 23651 DATE
about one million 23725 23742 CARDINAL
9,000 square miles 23765 23783 QUANTITY
djibouti 23785 23793 GPE
one 23797 23800 CARDINAL
africa 23804 23810 LOC
this week 23837 23846 DATE
africa 23859 23865 LOC
986 23939 23942 CARDINAL
ismail omar guelleh 24347 24366 PERSON
the red sea 24468 24479 LOC
one 24686 24689 CARDINAL
the united states’ 24693 24711 GPE
china 24746 24751 GPE
first 24754 24759 ORDINAL
measures.on 24873 24884 ORG
april 23 24885 24893 DATE
michael d. turello 24905 24923 PERSON
africa 24976 24982 LOC
u.s. 25027 25031 GPE
djibouti 25065 25073 GPE
okinawa city 25332 25344 GPE
japan 25346 25351 GPE
thousands 25408 25417 CARDINAL
this month 25571 25581 DATE
10,000 25734 25740 CARDINAL
16,000 25748 25754 CARDINAL
friday 25765 25771 DATE
a whole year 25789 25801 DATE
saturday 25863 25871 DATE
this month 25948 25958 DATE
fukushima 26102 26111 PERSON
u.s. 26145 26149 GPE
mid-may 26357 26364 DATE
saturday 26565 26573 DATE
japan 26575 26580 GPE
more than 13,500 26585 26601 CARDINAL
341 26634 26637 CARDINAL
israel 26648 26654 GPE
monday 26773 26779 DATE
tuesday 26797 26804 DATE
hundreds of thousands 26835 26856 CARDINAL
memorial day 27057 27069 DATE
frida shniderman 27121 27137 PERSON
72 27139 27141 DATE
meir rozenchtroch 27169 27186 PERSON
israel 27237 27243 GPE
syria 27248 27253 GPE
1974 27257 27261 DATE
every year 27292 27302 DATE
naftali bennett 27354 27369 PERSON
past years 27430 27440 DATE
about one and a half million 27489 27517 CARDINAL
israelis 27518 27526 NORP
israelis 27608 27616 NORP
“my 27766 27769 PERSON
moshe muskal 27798 27810 PERSON
64 27812 27814 DATE
israel 27865 27871 GPE
lebanese 27880 27888 NORP
hezbollah 27904 27913 ORG
2006 27917 27921 DATE
this day 27924 27932 DATE
israelis 28010 28018 NORP
more than 15,000 28124 28140 CARDINAL
saturday 28166 28174 DATE
nearly 200 28180 28190 CARDINAL
pacific island 28209 28223 LOC
300,000 28234 28241 CARDINAL
saturday 28305 28313 DATE
’s cup of tea 28393 28406 EVENT
the vanuatu cricket association 28412 28443 ORG
shane deitz 28691 28702 PERSON
the vanuatu cricket association 28727 28758 ORG
the australian national team 28783 28811 ORG
late last month 29127 29142 DATE
april 6 29199 29206 DATE
saturday 29293 29301 DATE
a few feet 29381 29391 QUANTITY
indonesia 29606 29615 GPE
joko widodo 29785 29796 PERSON
the republic of indonesia 29800 29825 GPE
trump 29832 29837 PERSON
friday 29847 29853 DATE
us!”in 29929 29935 ORG
joko’s 29947 29953 ORG
fadjroel rachman 29965 29981 PERSON
saturday 29994 30002 DATE
the republic of indonesia mr 30067 30095 GPE
president 30097 30106 PERSON
indonesia 30109 30118 GPE
270 million 30141 30152 CARDINAL
fourth 30169 30175 ORDINAL
only about 8,400 30200 30216 CARDINAL
34 30292 30294 CARDINAL
720 30328 30331 CARDINAL
second 30365 30371 ORDINAL
east asia 30388 30397 LOC
china 30404 30409 GPE
unreported.mr 30461 30474 GPE
the united states 30492 30509 GPE
three 30536 30541 CARDINAL
latin american 30542 30556 NORP
ecuador 30569 30576 GPE
el salvador 30578 30589 GPE
honduras 30594 30602 GPE
four 30705 30709 CARDINAL
honduran 30986 30994 NORP
juan orlando 31006 31018 PERSON
trump 31050 31055 PERSON
friday 31248 31254 DATE
evening 31255 31262 TIME
honduran 31295 31303 NORP
trump 31319 31324 PERSON
lara jakes 31476 31486 GPE
anton troianovski 31488 31505 PERSON
andrew e. kramer 31507 31523 PERSON
kai schultz 31525 31536 PERSON
richard c. paddock 31571 31589 PERSON
mike ives 31604 31613 PERSON
elian peltier 31628 31641 PERSON
john schwartz 31643 31656 PERSON
caitlin dickerson 31658 31675 PERSON
liz alderman 31677 31689 PERSON
elaine yu 31704 31713 PERSON
hisako ueno 31715 31726 PERSON
adam rasgon 31728 31739 PERSON
adam nossiter 31741 31754 PERSON
evan easterling 31756 31771 PERSON
andrew lavallee 31773 31788 PERSON
joshua barone 31790 31803 PERSON
damien cave 31805 31816 PERSON
jin wu 31818 31824 PERSON
declan walsh 31826 31838 PERSON
maggie haberman 31840 31855 PERSON
jonathan martin 31857 31872 PERSON
alexandra stevenson 31874 31893 PERSON
raphael minder 31895 31909 PERSON
latif dahir 31916 31927 PERSON
nicholas kulish 31929 31944 PERSON
ernesto londoño 31946 31961 PERSON
letícia casado 31963 31977 ORG
manuela andreoni 31979 31995 PERSON
david gelles 32000 32012 PERSON
wang yiwei 32014 32024 PERSON
april 11 32054 32062 DATE
american enterprise institute 32237 32266 ORG
scott gottlieb 32275 32289 PERSON
caitlin rivers 32291 32305 PERSON
mark b. mcclellan 32307 32324 PERSON
lauren silvis 32326 32339 PERSON
crystal watson 32344 32358 PERSON
four 32370 32374 CARDINAL
at least 14 32736 32747 CARDINAL
the american red cross 33066 33088 ORG
more than 30,000 33168 33184 CARDINAL
the past few weeks 33243 33261 DATE
though.)if 33355 33365 GPE
americans 33705 33714 NORP
c.d.c. 33911 33917 GPE
distancing.if 34232 34245 PERSON
tested.it 34600 34609 PERSON
the united states 34946 34963 GPE
china 34965 34970 GPE
europe 34975 34981 LOC
american 34987 34995 NORP
at least 12 35069 35080 CARDINAL
two weeks 36059 36068 DATE
six feet 36346 36354 QUANTITY
the next five years.watching 36856 36884 DATE
In [4]:
#1.2.1 Count all the named entities in the document (0.2 points)
#1.2.2 Count the most frequent tokens for the entire document (0.2 points)

def CountFrequency(my_list): 

    # Creating an empty dictionary 
    freq = {} 
    for items in my_list: 
        freq[items] = my_list.count(items) 

    for key, value in freq.items(): 
        print (key, value)
    return freq

# Driver function 
if __name__ == "__main__": 
   named_entities_count = CountFrequency(e_type)
   token_count =  CountFrequency(e_text)
GPE 95
PERSON 97
DATE 95
ORG 44
NORP 32
CARDINAL 66
LOC 12
TIME 7
ORDINAL 7
QUANTITY 4
EVENT 2
MONEY 9
PERCENT 3
WORK_OF_ART 1
advertisementbelarus 1
brazil 2
trump 12
daily 5
white house 1
americans 4
u.s. 9
state department 1
the coming days 1
the state department 1
65,000 1
indian 1
africa 4
american 6
at least 17,000 1
the united states 9
william walters 1
the state department’s 1
more than a million 1
pedro sánchez 1
saturday 15
evening 2
may 2 1
sánchez 2
spanish 1
sunday 2
first 3
mid-march 1
one hour 1
one kilometer 1
spain 2
378 1
367 1
friday 13
this week 4
may 9 1
below 10 1
half 1
17 1
covid-19 patients.as 1
this past week 2
nearly 53,000 1
3,670 1
jair bolsonaro 1
recent weeks 2
bolsonaro 4
abroad.he 1
november 1
the social liberal party 1
two 2
latin american 2
late march 1
belarus 2
belarusian 1
aleksandr g. lukashenko 1
”at 1
germany 2
denmark 1
last weekend 1
earlier this month 1
nearly 9,000 1
63 1
ukraine 1
four 3
one 4
metopera.org 1
evening eastern time 1
more than 40 1
nine 1
baton rouge 1
la. 1
anna netrebko 1
vienna 1
peter gelb 1
earth 1
march 12 1
gelb 3
new york 1
yannick nézet-séguin 1
montreal 1
the opera house 1
every night 1
the past five weeks 1
30,000 1
button 1
britain 5
boris johnson 1
cummings 2
10 1
department of health and social care 1
20,000 3
150,000 1
fifth 1
stephen powis 1
the national health service 1
england 1
british 1
sky news 1
guardian 1
last year 1
the day 1
tens of thousands 1
8 a.m. 1
the website.the defense ministry 1
tom moore 1
a world war ii 1
1 1
michael ball 1
more than 2,837,000 1
at least 177 1
france 5
the netherlands 1
more taxpayer dollars 1
treasury department 1
an additional $9.5 billion 1
$2.2 trillion 1
congress 1
last month 1
$17 billion 1
netherlands 1
10 billion 1
about $10.8 billion 1
europe 2
€4 billion 1
french 2
€3 billion 1
late friday 1
dutch 2
an additional €2 billion to €4 billion 1
14 percent 1
the european commission 1
the european union 1
the bailout.the world health organization 1
italy 1
chile 1
14 1
only one 1
99 percent 1
china 5
angela merkel 1
emmanuel macron 1
about $689 billion 1
2018 2
the world bank 3
millions 2
their hours 1
about 20 percent 1
this year 1
mexico 1
third 1
india 1
mexicans 1
benefits.a 1
roy germano 1
new york university 1
germano 1
russian 3
connecticut 1
julia vasilenko 1
kandinsky’s musical and 1
the present day 1
lo-fi 1
more than half a million 1
just a few weeks 1
moscow 1
more than a third 1
los angeles 1
amsterdam 1
izoizolyacia’s 1
cairo 2
the middle east 2
egypt 2
the holy month 1
the united arab emirates 1
kuwait 1
saudi arabia 1
arab 1
about 3,900 1
100 million 1
islam 1
three 3
republicans 1
battleground states 1
michigan 1
pennsylvania 1
florida 1
fox news personalities.the white house 1
thursday 1
mike pence 1
the white house coronavirus task force 1
“what 1
white house news conferences 1
the time & effort!”here 1
about 1.2 million 1
a week 1
more than six 1
the second week of april 1
the new york times 1
the food and drug administration 1
the united nations 1
a nobel prize 1
april 15 1
dolgellau 1
88.the 1
hannah malcolm 1
twitter.a 1
the united nations intergovernmental 1
houghton 2
1990 1
1995 1
2001 1
2007 1
al gore 1
1994 1
10 or 20 years 1
about one million 1
9,000 square miles 1
djibouti 2
986 1
ismail omar guelleh 1
the red sea 1
the united states’ 1
measures.on 1
april 23 1
michael d. turello 1
okinawa city 1
japan 2
thousands 1
this month 2
10,000 1
16,000 1
a whole year 1
fukushima 1
mid-may 1
more than 13,500 1
341 1
israel 3
monday 1
tuesday 1
hundreds of thousands 1
memorial day 1
frida shniderman 1
72 1
meir rozenchtroch 1
syria 1
1974 1
every year 1
naftali bennett 1
past years 1
about one and a half million 1
israelis 3
“my 1
moshe muskal 1
64 1
lebanese 1
hezbollah 1
2006 1
this day 1
more than 15,000 1
nearly 200 1
pacific island 1
300,000 1
’s cup of tea 1
the vanuatu cricket association 2
shane deitz 1
the australian national team 1
late last month 1
april 6 1
a few feet 1
indonesia 2
joko widodo 1
the republic of indonesia 1
us!”in 1
joko’s 1
fadjroel rachman 1
the republic of indonesia mr 1
president 1
270 million 1
fourth 1
only about 8,400 1
34 1
720 1
second 1
east asia 1
unreported.mr 1
ecuador 1
el salvador 1
honduras 1
honduran 2
juan orlando 1
lara jakes 1
anton troianovski 1
andrew e. kramer 1
kai schultz 1
richard c. paddock 1
mike ives 1
elian peltier 1
john schwartz 1
caitlin dickerson 1
liz alderman 1
elaine yu 1
hisako ueno 1
adam rasgon 1
adam nossiter 1
evan easterling 1
andrew lavallee 1
joshua barone 1
damien cave 1
jin wu 1
declan walsh 1
maggie haberman 1
jonathan martin 1
alexandra stevenson 1
raphael minder 1
latif dahir 1
nicholas kulish 1
ernesto londoño 1
letícia casado 1
manuela andreoni 1
david gelles 1
wang yiwei 1
april 11 1
american enterprise institute 1
scott gottlieb 1
caitlin rivers 1
mark b. mcclellan 1
lauren silvis 1
crystal watson 1
at least 14 1
the american red cross 1
more than 30,000 1
the past few weeks 1
though.)if 1
c.d.c. 1
distancing.if 1
tested.it 1
at least 12 1
two weeks 1
six feet 1
the next five years.watching 1
In [5]:
uniqueWords = [] 
for i in e_type:
      if not i in uniqueWords:
          uniqueWords.append(i);
#uniqueWords
print("Count of all the named entities in the document are:", len(uniqueWords))
Count of all the named entities in the document are: 14

1.2.3 Pick a random integer K using Python random module, then pick three consecutive sentences starting with Kth, and print these sentences. Note that you must make sure all picked sentences are in the document. (1.5 points)

In [6]:
nlp = en_core_web_sm.load()   
doc = nlp(mytext.lower()) 

list_single_words = []
#Tokenize with spacy
#[(token, token.orth_, token.orth) for token in doc]
list_single_words = [token.orth_ for token in doc]
list_single_words
Out[6]:
['advertisementbelarus',
 ',',
 'led',
 'by',
 'a',
 'virus',
 '-',
 'denying',
 'autocrat',
 ',',
 'has',
 'imposed',
 'no',
 'lockdowns',
 '.',
 'brazil',
 '’s',
 'leader',
 ',',
 'who',
 'has',
 'played',
 'down',
 'the',
 'virus',
 ',',
 'faces',
 'an',
 'uncertain',
 'future.right',
 'nowafter',
 'a',
 'backlash',
 'to',
 'his',
 'suggestion',
 'that',
 'injecting',
 'disinfectants',
 'could',
 'combat',
 'the',
 'coronavirus',
 ',',
 'president',
 'trump',
 'indicates',
 'his',
 'daily',
 'white',
 'house',
 'briefings',
 'are',
 'no',
 'longer',
 'worth',
 'his',
 'time.many',
 'americans',
 'who',
 'had',
 'assumed',
 'they',
 'could',
 'stay',
 'overseas',
 'till',
 'the',
 'pandemic',
 'ebbed',
 'now',
 'face',
 'an',
 'unnerving',
 'choice',
 ':',
 'either',
 'prepare',
 'for',
 'the',
 'possibility',
 'of',
 'being',
 'infected',
 'and',
 'treated',
 'in',
 'foreign',
 'hospitals',
 ',',
 'or',
 'risk',
 'infection',
 'on',
 'the',
 'way',
 'back',
 'to',
 'the',
 'united',
 'states.the',
 'u.s',
 '.',
 'state',
 'department',
 ',',
 'warning',
 'that',
 'commercial',
 'flights',
 'from',
 'overseas',
 'may',
 'end',
 'in',
 'the',
 'coming',
 'days',
 ',',
 'is',
 'urging',
 'americans',
 'abroad',
 'to',
 'grab',
 'any',
 'opportunity',
 'to',
 'board',
 'them.flights',
 'organized',
 'by',
 'the',
 'state',
 'department',
 'that',
 'have',
 'so',
 'far',
 'returned',
 '65,000',
 'americans',
 'from',
 'across',
 'the',
 'world',
 'are',
 'winding',
 'down',
 '.',
 'some',
 'continue',
 'in',
 'limited',
 'numbers',
 ',',
 'in',
 'areas',
 'like',
 'the',
 'indian',
 'subcontinent',
 'and',
 'africa',
 '.',
 'and',
 'american',
 'diplomats',
 'have',
 'helped',
 'commercial',
 'airlines',
 'cut',
 'through',
 'foreign',
 'regulations',
 'that',
 'have',
 'restricted',
 'flights',
 'in',
 'and',
 'out',
 'of',
 'some',
 'countries',
 'during',
 'the',
 'pandemic',
 '.',
 'but',
 'there',
 'still',
 'are',
 'at',
 'least',
 '17,000',
 'american',
 'citizens',
 'or',
 'legal',
 'residents',
 'abroad',
 'who',
 'have',
 'indicated',
 'they',
 'need',
 'help.officials',
 'are',
 'suggesting',
 'that',
 'the',
 'risk',
 'of',
 'contracting',
 'the',
 'virus',
 'from',
 'traveling',
 'on',
 'any',
 'kind',
 'of',
 'flight',
 'is',
 'offset',
 'by',
 'disparities',
 'in',
 'health',
 'care',
 'systems',
 '.',
 '“you',
 'can',
 'come',
 'back',
 'to',
 'the',
 'united',
 'states',
 'where',
 'you',
 'are',
 'a',
 'citizen',
 'and',
 'you',
 'have',
 'access',
 'to',
 'health',
 'care',
 'and',
 'you',
 'have',
 'access',
 'to',
 'an',
 'infrastructure',
 'that',
 'is',
 'still',
 'intact',
 ',',
 '”',
 'said',
 'dr',
 '.',
 'william',
 'walters',
 ',',
 'the',
 'state',
 'department',
 '’s',
 'deputy',
 'chief',
 'medical',
 'officer',
 '.',
 'but',
 'by',
 'hunkering',
 'down',
 ',',
 'in',
 'developing',
 'countries',
 'in',
 'particular',
 ',',
 'where',
 'the',
 'virus',
 'has',
 'yet',
 'to',
 'peak',
 ',',
 '“',
 'you',
 'will',
 'be',
 'an',
 'american',
 'citizen',
 'in',
 'a',
 'foreign',
 'country',
 'that',
 'did',
 'n’t',
 'have',
 'great',
 'infrastructure',
 'to',
 'begin',
 'with',
 '.',
 '”and',
 'students',
 'studying',
 'abroad',
 'in',
 'the',
 'united',
 'states',
 'have',
 'been',
 'stranded',
 'with',
 'dwindling',
 'financial',
 'resources.many',
 'of',
 'the',
 'more',
 'than',
 'a',
 'million',
 'international',
 'students',
 'who',
 'left',
 'their',
 'home',
 'countries',
 'to',
 'study',
 'in',
 'the',
 'united',
 'states',
 'had',
 'been',
 'living',
 'in',
 'college',
 'dorms',
 '.',
 'they',
 'were',
 'left',
 'to',
 'find',
 'new',
 'housing',
 'after',
 'campuses',
 'shutdown',
 '.',
 'a',
 'substantial',
 'number',
 'of',
 'them',
 'are',
 'also',
 'watching',
 'their',
 'financial',
 'lives',
 'fall',
 'apart',
 '.',
 'visa',
 'restrictions',
 'prevent',
 'them',
 'from',
 'working',
 'off',
 'campus',
 ',',
 'but',
 'campuses',
 'are',
 'now',
 'closed',
 '.',
 'and',
 'while',
 'some',
 'come',
 'from',
 'families',
 'wealthy',
 'enough',
 'to',
 'pay',
 'for',
 'their',
 'housing',
 'or',
 'whisk',
 'them',
 'home',
 ',',
 'many',
 'others',
 'had',
 'already',
 'been',
 'struggling',
 'to',
 'cobble',
 'together',
 'tuition',
 'fees',
 ',',
 'which',
 'tend',
 'to',
 'be',
 'much',
 'higher',
 'for',
 'international',
 'students',
 '.',
 'and',
 'many',
 'currencies',
 '’',
 'values',
 'have',
 'collapsed',
 'relative',
 'to',
 'the',
 'u.s',
 '.',
 'dollar.some',
 'international',
 'students',
 'say',
 'they',
 'have',
 'had',
 'to',
 'turn',
 'to',
 'food',
 'banks',
 '.',
 'others',
 'are',
 'couch',
 'surfing',
 'in',
 'the',
 'friends',
 '’',
 'homes',
 ',',
 'but',
 'do',
 'n’t',
 'know',
 'how',
 'long',
 'they',
 'will',
 'be',
 'welcome',
 '.',
 'those',
 'who',
 'were',
 'able',
 'to',
 'fly',
 'home',
 'before',
 'international',
 'borders',
 'closed',
 'are',
 'now',
 'not',
 'sure',
 'they',
 'will',
 'be',
 'able',
 'to',
 'come',
 'back',
 'to',
 'finish',
 'their',
 'studies.prime',
 'minister',
 'pedro',
 'sánchez',
 'said',
 'on',
 'saturday',
 'evening',
 'that',
 'spaniards',
 'would',
 'be',
 'allowed',
 'outdoors',
 'to',
 'take',
 'a',
 'stroll',
 'or',
 'exercise',
 'as',
 'of',
 'may',
 '2',
 'if',
 'the',
 'country',
 '’s',
 'coronavirus',
 'numbers',
 'continued',
 'to',
 'improve',
 'over',
 'the',
 'coming',
 'week.in',
 'a',
 'televised',
 'address',
 ',',
 'mr',
 '.',
 'sánchez',
 'did',
 'n’t',
 'detail',
 'what',
 'limits',
 'to',
 'sports',
 'would',
 'still',
 'apply',
 '.',
 'but',
 'his',
 'announcement',
 'came',
 'as',
 'spanish',
 'children',
 'prepared',
 'to',
 'go',
 'outdoors',
 'on',
 'sunday',
 'for',
 'the',
 'first',
 'time',
 'since',
 'the',
 'lockdown',
 'came',
 'into',
 'force',
 'in',
 'mid',
 '-',
 'march',
 '.',
 'they',
 'will',
 'be',
 'able',
 'to',
 'stroll',
 'for',
 'one',
 'hour',
 'within',
 'one',
 'kilometer',
 'of',
 'their',
 'homes',
 'when',
 'accompanied',
 'by',
 'an',
 'adult.mr',
 '.',
 'sánchez',
 'also',
 'said',
 'that',
 'the',
 'easing',
 'spain',
 '’s',
 'lockdown',
 'would',
 'be',
 '“',
 'gradual',
 'and',
 'asymmetrical',
 ',',
 'but',
 'coordinated',
 '.',
 '”',
 'some',
 'regional',
 'and',
 'local',
 'leaders',
 'ague',
 'that',
 'their',
 'areas',
 'have',
 'already',
 'contained',
 'the',
 'epidemic',
 ',',
 'and',
 'they',
 'are',
 'pushing',
 'to',
 'reduce',
 'lockdown',
 'measures',
 'locally',
 'ahead',
 'of',
 'any',
 'national',
 'easing.spain',
 'reported',
 'a',
 'slight',
 'uptick',
 'in',
 'its',
 'daily',
 'death',
 'toll',
 'with',
 '378',
 'dead',
 'on',
 'saturday',
 ',',
 'compared',
 'to',
 '367',
 'on',
 'friday',
 '.',
 'but',
 'the',
 'country',
 'crossed',
 'a',
 'significant',
 'milestone',
 'this',
 'week',
 'by',
 'registering',
 'more',
 'hospital',
 'recoveries',
 'than',
 'new',
 'coronavirus',
 'cases.the',
 'country',
 '’s',
 'lockdown',
 'has',
 'been',
 'extended',
 'until',
 'may',
 '9',
 '.',
 'but',
 'some',
 'local',
 'and',
 'regional',
 'politicians',
 'have',
 'stressed',
 'that',
 'the',
 'daily',
 'number',
 'of',
 'coronavirus',
 'fatalities',
 'has',
 'fallen',
 'to',
 'below',
 '10',
 'a',
 'day',
 'in',
 'half',
 'of',
 'spain',
 '’s',
 '17',
 'regions',
 '.',
 'the',
 'push',
 'for',
 'local',
 'easing',
 'of',
 'restrictions',
 'has',
 'particularly',
 'come',
 'from',
 'islands',
 'as',
 'well',
 'as',
 'southern',
 'regions',
 'whose',
 'hospitals',
 'were',
 'never',
 'overwhelmed',
 'with',
 'covid-19',
 'patients.as',
 'brazil',
 '’s',
 'coronavirus',
 'contagion',
 'accelerated',
 'this',
 'past',
 'week',
 ',',
 'with',
 'nearly',
 '53,000',
 'confirmed',
 'cases',
 'and',
 '3,670',
 'deaths',
 ',',
 'speculation',
 'intensified',
 'over',
 'how',
 'much',
 'longer',
 'president',
 'jair',
 'bolsonaro',
 'would',
 'last',
 'in',
 'power.in',
 'recent',
 'weeks',
 ',',
 'mr',
 '.',
 'bolsonaro',
 '’s',
 'strikingly',
 'dismissive',
 'response',
 'to',
 'the',
 'coronavirus',
 'pandemic',
 ',',
 'which',
 'he',
 'has',
 'called',
 'a',
 '“',
 'measly',
 'cold',
 '”',
 'that',
 'can',
 'not',
 'be',
 'allowed',
 'to',
 'throttle',
 'economic',
 'growth',
 ',',
 'generated',
 'calls',
 'for',
 'impeachment',
 'at',
 'home',
 'and',
 'bewilderment',
 'abroad.he',
 'was',
 'already',
 'struggling',
 'to',
 'govern',
 'effectively',
 'when',
 ',',
 'on',
 'friday',
 ',',
 'his',
 'star',
 'cabinet',
 'minister',
 'resigned',
 'with',
 'an',
 'explosive',
 'speech',
 'that',
 'basically',
 'called',
 'his',
 'soon',
 '-',
 'to',
 '-',
 'be',
 'former',
 'boss',
 'a',
 'criminal.mr',
 '.',
 'bolsonaro',
 'became',
 'a',
 'president',
 'without',
 'a',
 'political',
 'party',
 'in',
 'november',
 ',',
 'after',
 'falling',
 'out',
 'with',
 'leaders',
 'of',
 'the',
 'social',
 'liberal',
 'party',
 ',',
 'which',
 'had',
 'backed',
 'his',
 'presidential',
 'bid',
 '.',
 'and',
 'several',
 'political',
 'allies',
 '—',
 'including',
 'two',
 'of',
 'mr',
 '.',
 'bolsonaro',
 '’s',
 'sons',
 '—',
 'are',
 'under',
 'investigation',
 'in',
 'a',
 'series',
 'of',
 'criminal',
 'and',
 'legislative',
 'inquiries.given',
 'those',
 'challenges',
 ',',
 'which',
 'have',
 'left',
 'mr',
 '.',
 'bolsonaro',
 'deeply',
 'isolated',
 ',',
 'the',
 'dramatic',
 'exit',
 'of',
 'his',
 'justice',
 'minister',
 'was',
 'seen',
 'by',
 'critics',
 'and',
 'supporters',
 'of',
 'the',
 'president',
 'as',
 'a',
 'potentially',
 'destructive',
 'blow',
 'to',
 'his',
 'grip',
 'on',
 'power',
 'during',
 'a',
 'public',
 'health',
 'crisis',
 'and',
 'a',
 'recession.and',
 ',',
 'while',
 'several',
 'latin',
 'american',
 'leaders',
 'have',
 'seen',
 'a',
 'bounce',
 'in',
 'public',
 'opinion',
 'as',
 'they',
 'imposed',
 'strict',
 'quarantine',
 'measures',
 'to',
 'curb',
 ...]
In [7]:
# #Tokenize words using regex
# #convert all text to lower case, and make sure to include punctuation in the n-gram models.
# #Make sure that you separate punctuation marks from text and treat them as tokens. Also treat numeric data as tokens.
# tokenizer = RegexpTokenizer(r"[^\W]+|[\.\?\!]")
# regexp_tokens = tokenizer.tokenize(mytext.lower())
# list_single_words = regexp_tokens
# #create a unigram
# #uniqueWords = set(list_single_words)
In [8]:
# list_single_words
In [9]:
def generateSentence(k):
    words = ' '
    limit = 3
    limit = limit + 1 
    limit_count = 0
    sentence_count = 0
    for i in range(len(list_single_words)): 
        #print(list_single_words[i])
        if (list_single_words[i] == '!') or (list_single_words[i] == '.') or (list_single_words[i] == '?'):
                sentence_count +=1
        if sentence_count > k:        
            if (list_single_words[i] != '!') or (list_single_words[i] != '.') or (list_single_words[i] != '?'):
                words += list_single_words[i] + ' '
            if (list_single_words[i] == '!') or (list_single_words[i] == '.') or (list_single_words[i] == '?'):
                #print(words)
                    limit_count +=1
        if limit_count == limit:
            break
    print(sentence_count)
    sentence = words.strip()
    sentence = sentence[1:].strip()
    return sentence

#pick three consecutive sentences starting with Kth
#generate random integer for k
k = int(random.uniform(0, 200))
#
sentences = generateSentence(k)   
sentences
186
Out[9]:
'he said he had also asked for assistance in securing debt relief for poor countries and financial aid from international lenders.in a tweet on friday evening about his conversation with the honduran president , mr . trump said , “ we work closely together on the southern border . will be helping him with his request for ventilators and testing .'

1.2.4 Extract part-of-speech and lemmatize these consecutive sentences (0.2 points)

In [10]:
from nltk import sent_tokenize, word_tokenize, PorterStemmer
from nltk.corpus import stopwords 

def pos_tagging(sentences):
    sentences = sentences
    docs = nlp(sentences.lower()) 
    lemmatize = [(token, token.lemma, token.lemma_) for token in docs]
    pos_tags = [(i, i.tag_) for i in docs]
    return pos_tags, lemmatize 



pos_tags, lemmatized = pos_tagging(sentences)
print(pos_tags)
print(lemmatized)
[(he, 'PRP'), (said, 'VBD'), (he, 'PRP'), (had, 'VBD'), (also, 'RB'), (asked, 'VBN'), (for, 'IN'), (assistance, 'NN'), (in, 'IN'), (securing, 'VBG'), (debt, 'NN'), (relief, 'NN'), (for, 'IN'), (poor, 'JJ'), (countries, 'NNS'), (and, 'CC'), (financial, 'JJ'), (aid, 'NN'), (from, 'IN'), (international, 'JJ'), (lenders.in, 'NNS'), (a, 'DT'), (tweet, 'NN'), (on, 'IN'), (friday, 'NNP'), (evening, 'NN'), (about, 'IN'), (his, 'PRP$'), (conversation, 'NN'), (with, 'IN'), (the, 'DT'), (honduran, 'NNP'), (president, 'NNP'), (,, ','), (mr, 'NNP'), (., 'NNP'), (trump, 'NNP'), (said, 'VBD'), (,, ','), (“, '``'), (we, 'PRP'), (work, 'VBP'), (closely, 'RB'), (together, 'RB'), (on, 'IN'), (the, 'DT'), (southern, 'JJ'), (border, 'NN'), (., '.'), (will, 'MD'), (be, 'VB'), (helping, 'VBG'), (him, 'PRP'), (with, 'IN'), (his, 'PRP$'), (request, 'NN'), (for, 'IN'), (ventilators, 'NNS'), (and, 'CC'), (testing, 'NN'), (., '.')]
[(he, 561228191312463089, '-PRON-'), (said, 8685289367999165211, 'say'), (he, 561228191312463089, '-PRON-'), (had, 14692702688101715474, 'have'), (also, 12084876542534825196, 'also'), (asked, 203487227105936704, 'ask'), (for, 16037325823156266367, 'for'), (assistance, 13758060267895693543, 'assistance'), (in, 3002984154512732771, 'in'), (securing, 16480985536374789266, 'secure'), (debt, 16235366863958461733, 'debt'), (relief, 12027419396575871032, 'relief'), (for, 16037325823156266367, 'for'), (poor, 13558078257114079636, 'poor'), (countries, 12290671265767728302, 'country'), (and, 2283656566040971221, 'and'), (financial, 12019518237760591348, 'financial'), (aid, 11586757942818230145, 'aid'), (from, 7831658034963690409, 'from'), (international, 6392893036165415004, 'international'), (lenders.in, 9460573360514710984, 'lenders.in'), (a, 11901859001352538922, 'a'), (tweet, 18233253705271341989, 'tweet'), (on, 5640369432778651323, 'on'), (friday, 11784865196037645502, 'friday'), (evening, 4823652925149831785, 'evening'), (about, 942632335873952620, 'about'), (his, 561228191312463089, '-PRON-'), (conversation, 12275634602700366607, 'conversation'), (with, 12510949447758279278, 'with'), (the, 7425985699627899538, 'the'), (honduran, 2000225461946737733, 'honduran'), (president, 13696383780240996584, 'president'), (,, 2593208677638477497, ','), (mr, 2919978968283337964, 'mr'), (., 12646065887601541794, '.'), (trump, 15856857394754098415, 'trump'), (said, 8685289367999165211, 'say'), (,, 2593208677638477497, ','), (“, 15884554869126768810, '"'), (we, 561228191312463089, '-PRON-'), (work, 10038440415813069799, 'work'), (closely, 9696970313201087903, 'closely'), (together, 12060003407050460571, 'together'), (on, 5640369432778651323, 'on'), (the, 7425985699627899538, 'the'), (southern, 12121605977752639731, 'southern'), (border, 17575469328687188493, 'border'), (., 12646065887601541794, '.'), (will, 18307573501153647118, 'will'), (be, 10382539506755952630, 'be'), (helping, 17461235395181654430, 'help'), (him, 561228191312463089, '-PRON-'), (with, 12510949447758279278, 'with'), (his, 561228191312463089, '-PRON-'), (request, 440192745867607215, 'request'), (for, 16037325823156266367, 'for'), (ventilators, 6370701854268528591, 'ventilator'), (and, 2283656566040971221, 'and'), (testing, 2754665471364627735, 'testing'), (., 12646065887601541794, '.')]

1.2.5 Get and print the entity annotation for each token of the Kth sentence (0.5 points)

In [11]:
docs = nlp(sentences)
sent_e_label = []
sent_e_text = []
for ent in docs.ents:
    print(ent.text, ent.start_char, ent.end_char, ent.label_) 
    sent_e_label.append(ent.label_)
    sent_e_text.append(ent.text)
print(sent_e_label, sent_e_text) 
friday 143 149 DATE
evening 150 157 TIME
honduran 190 198 NORP
trump 216 221 PERSON
['DATE', 'TIME', 'NORP', 'PERSON'] ['friday', 'evening', 'honduran', 'trump']

1.2.6 Visualize the entities and dependencies of Kth sentence (0.4 points)

In [12]:
#import spacy
from spacy import displacy

docs = nlp(sentences.lower()) 
displacy.render(docs , style = 'ent', jupyter = True)
displacy.render(docs , style = 'dep', jupyter = True, options = {'distance': 100})
he said he had also asked for assistance in securing debt relief for poor countries and financial aid from international lenders.in a tweet on friday DATE evening TIME about his conversation with the honduran NORP president , mr . trump PERSON said , “ we work closely together on the southern border . will be helping him with his request for ventilators and testing .
he PRON said VERB he PRON had AUX also ADV asked VERB for ADP assistance NOUN in ADP securing VERB debt NOUN relief NOUN for ADP poor ADJ countries NOUN and CCONJ financial ADJ aid NOUN from ADP international ADJ lenders.in NOUN a DET tweet NOUN on ADP friday PROPN evening NOUN about ADP his PRON conversation NOUN with ADP the DET honduran PROPN president , PROPN mr . PROPN trump PROPN said , “ VERB we PRON work VERB closely ADV together ADV on ADP the DET southern ADJ border . NOUN will AUX be AUX helping VERB him PRON with ADP his PRON request NOUN for ADP ventilators NOUN and CCONJ testing . NOUN nsubj ccomp nsubj aux advmod ccomp prep pobj prep pcomp compound dobj prep amod pobj cc amod conj prep amod pobj det npadvmod prep compound pobj prep poss pobj prep det amod pobj compound nsubj nsubj ccomp advmod advmod prep det amod pobj aux aux dobj prep poss pobj prep pobj cc conj
In [ ]:
 
In [ ]:
 

1.2.7 Visualize all the entities in the document (0.5 points)

In [13]:
docs = nlp(mytext.lower()) 
displacy.render(docs , style = 'ent', jupyter = True)
advertisementbelarus GPE , led by a virus-denying autocrat, has imposed no lockdowns. brazil GPE ’s leader, who has played down the virus, faces an uncertain future.right nowafter a backlash to his suggestion that injecting disinfectants could combat the coronavirus, president trump PERSON indicates his daily DATE white house ORG briefings are no longer worth his time.many americans NORP who had assumed they could stay overseas till the pandemic ebbed now face an unnerving choice: either prepare for the possibility of being infected and treated in foreign hospitals, or risk infection on the way back to the united states.the u.s. GPE state department ORG , warning that commercial flights from overseas may end in the coming days DATE , is urging americans NORP abroad to grab any opportunity to board them.flights organized by the state department ORG that have so far returned 65,000 CARDINAL americans NORP from across the world are winding down. some continue in limited numbers, in areas like the indian NORP subcontinent and africa LOC . and american NORP diplomats have helped commercial airlines cut through foreign regulations that have restricted flights in and out of some countries during the pandemic. but there still are at least 17,000 CARDINAL american NORP citizens or legal residents abroad who have indicated they need help.officials are suggesting that the risk of contracting the virus from traveling on any kind of flight is offset by disparities in health care systems.“you can come back to the united states GPE where you are a citizen and you have access to health care and you have access to an infrastructure that is still intact,” said dr. william walters PERSON , the state department’s ORG deputy chief medical officer. but by hunkering down, in developing countries in particular, where the virus has yet to peak, “you will be an american NORP citizen in a foreign country that didn’t have great infrastructure to begin with.”and students studying abroad in the united states GPE have been stranded with dwindling financial resources.many of the more than a million CARDINAL international students who left their home countries to study in the united states GPE had been living in college dorms. they were left to find new housing after campuses shutdown. a substantial number of them are also watching their financial lives fall apart. visa restrictions prevent them from working off campus, but campuses are now closed. and while some come from families wealthy enough to pay for their housing or whisk them home, many others had already been struggling to cobble together tuition fees, which tend to be much higher for international students. and many currencies’ values have collapsed relative to the u.s. GPE dollar.some international students say they have had to turn to food banks. others are couch surfing in the friends’ homes, but don’t know how long they will be welcome. those who were able to fly home before international borders closed are now not sure they will be able to come back to finish their studies.prime minister pedro sánchez PERSON said on saturday DATE evening TIME that spaniards would be allowed outdoors to take a stroll or exercise as of may 2 DATE if the country’s coronavirus numbers continued to improve over the coming week.in a televised address, mr. sánchez PERSON didn’t detail what limits to sports would still apply. but his announcement came as spanish NORP children prepared to go outdoors on sunday DATE for the first ORDINAL time since the lockdown came into force in mid-march DATE . they will be able to stroll for one hour TIME within one kilometer QUANTITY of their homes when accompanied by an adult.mr. sánchez PERSON also said that the easing spain GPE ’s lockdown would be “gradual and asymmetrical, but coordinated.” some regional and local leaders ague that their areas have already contained the epidemic, and they are pushing to reduce lockdown measures locally ahead of any national easing.spain reported a slight uptick in its daily DATE death toll with 378 CARDINAL dead on saturday DATE , compared to 367 CARDINAL on friday DATE . but the country crossed a significant milestone this week DATE by registering more hospital recoveries than new coronavirus cases.the country’s lockdown has been extended until may 9 DATE . but some local and regional politicians have stressed that the daily DATE number of coronavirus fatalities has fallen to below 10 CARDINAL a day in half CARDINAL of spain GPE ’s 17 CARDINAL regions. the push for local easing of restrictions has particularly come from islands as well as southern regions whose hospitals were never overwhelmed with covid-19 patients.as ORG brazil GPE ’s coronavirus contagion accelerated this past week DATE , with nearly 53,000 CARDINAL confirmed cases and 3,670 CARDINAL deaths, speculation intensified over how much longer president jair bolsonaro PERSON would last in power.in recent weeks DATE , mr. bolsonaro PERSON ’s strikingly dismissive response to the coronavirus pandemic, which he has called a “measly cold” that cannot be allowed to throttle economic growth, generated calls for impeachment at home and bewilderment abroad.he ORG was already struggling to govern effectively when, on friday DATE , his star cabinet minister resigned with an explosive speech that basically called his soon-to-be former boss a criminal.mr. bolsonaro became a president without a political party in november DATE , after falling out with leaders of the social liberal party ORG , which had backed his presidential bid. and several political allies — including two CARDINAL of mr. bolsonaro PERSON ’s sons — are under investigation in a series of criminal and legislative inquiries.given those challenges, which have left mr. bolsonaro PERSON deeply isolated, the dramatic exit of his justice minister was seen by critics and supporters of the president as a potentially destructive blow to his grip on power during a public health crisis and a recession.and, while several latin american NORP leaders have seen a bounce in public opinion as they imposed strict quarantine measures to curb the spread of the coronavirus, mr. bolsonaro PERSON ’s popularity has dropped amid what critics call a flailing response. as he headed off the ice after playing a hockey game in an amateur tournament in late march DATE , the leader of belarus GPE brushed aside reporters’ anxious questions about the coronavirus pandemic.“there are no viruses here,” said the belarusian NORP president, aleksandr g. lukashenko PERSON , gesturing to the crowded arena. “do you see any of them flying around? i don’t see them either. ”at PERSON a time when some countries, like germany GPE and denmark GPE , having tamped down the initial outbreak of the virus, are experimenting with cautious openings of businesses and schools, belarus GPE is an outlier. it never imposed any restrictions at all.restaurants, coffee shops and movie theaters remain open. last weekend DATE , churches were packed for orthodox easter. professional soccer is in full swing, though the roaring crowds of earlier this month DATE have thinned. in the capital, minsk, the subways are crowded. most businesses require workers to show up.neither the raw numbers of infections, nearly 9,000 CARDINAL , nor the total deaths, 63 DATE , suggest that belarus’s epidemic is grossly disproportionate, though ukraine GPE with four CARDINAL times the population has fewer reported cases.however, few people believe the official tallies; there is some evidence that the true numbers are being suppressed.without a free press or any viable opposition parties, belarusians have little recourse to challenge the response. caught in the grip of an autocrat whom critics are calling one CARDINAL of the world’s foremost virus deniers, they have little choice but to accept official policy: the economy will keep chugging along, whatever the cost in human lives.the metropolitan opera’s at-home gala — a worldwide relay of live streamed performances that, in contrast to opera’s usual grandeur, was filmed using only household devices — was presented at metopera.org ORG and will remain available until sunday DATE evening eastern time TIME . it has an only-in-opera level of aspiration and difficulty: a roster of more than 40 CARDINAL of the company’s starriest singers, plus members of the orchestra and chorus, performing live across nine CARDINAL time zones. among them are lisette oropesa, in baton rouge GPE , la. GPE ; anna netrebko PERSON , in vienna GPE ; and piotr beczala, in what he described to peter gelb PERSON , the met’s general manager, as a village at the end of the earth LOC in poland.the met halted performances on march 12 DATE in response to the coronavirus pandemic — and eventually canceled the remainder of its season. mr. gelb PERSON — who hosted from new york GPE along with yannick nézet-séguin ORG , the met’s music director, who is in montreal GPE — said that the idea came about because “i am determined to keep the met in the consciousness of the broader public, and i am determined to use any possible means to do that.”since the opera house ORG went dark, it has posted a free stream from its vast met opera on demand library every night TIME . (mr. gelb PERSON said that in the past five weeks DATE , the number of paid subscribers to that on-demand service has doubled, to 30,000 CARDINAL .) each stream is accompanied by a “donate now” button GPE ; the at-home gala has one CARDINAL , too, though mr. gelb PERSON was quick to emphasize that this is not “a pbs telethon.”as the drumbeat grows for transparency about the secretive group guiding britain GPE ’s response to the coronavirus — the scientific advisory group for emergencies, or sage — the government acknowledged that prime minister boris johnson PERSON ’s most senior aide, dominic cummings, has listened in on the panel’s meetings.but a spokesman for downing street said on saturday DATE that mr. cummings PERSON was not a member of the group and did not influence policy.“no. 10 CARDINAL officials and officials from other departments attend/dial in to sage to listen to its discussions and occasionally ask questions, which is essential at a time the government is dealing with a global pandemic,” downing street said in a statement.on saturday DATE britain GPE ’s department of health and social care ORG said that the number of deaths in the country had surpassed 20,000 CARDINAL and that the number of confirmed cases is nearing 150,000 CARDINAL . britain GPE is the fifth ORDINAL country to record that many deaths, though its tally does not include deaths outside of hospitals. “it’s a very sad day for the nation; 20,000 CARDINAL deaths is clearly 20,000 CARDINAL too many,” stephen powis PERSON , the medical director of the national health service ORG in england GPE , said on saturday DATE at a news conference. opposition leaders have demanded more transparency from the group, whose members are largely anonymous and whose meetings are held in private. the british NORP government says it is being “guided by the science” coming from the group, but critics say the science is unclear.jonathan ashworth, who oversees the opposition the labour party’s health policy, called on the government to publish the minutes of the panel’s meetings. “we need to understand whether mr. cummings PERSON was contributing to the debate or influencing the debate,” he told sky news ORG on saturday.the developments came as leaked cabinet briefings to the guardian ORG newspaper indicated that ministers were warned last year DATE that britain GPE risked facing an influenza-type outbreak and that the country needed a robust plan to deal with it. a possible pandemic was at the top of a confidential annual national security risk assessment signed off by the government’s chief scientific adviser.in other developments in britain GPE :the government’s website for essential workers and their families to book coronavirus tests reopened on saturday DATE after shutting down the day DATE before when tens of thousands CARDINAL of requests flooded it. but the maximum capacity had been reached by 8 a.m. TIME on saturday DATE , according to a message published on the website.the defense ministry ORG said on friday DATE that the country’s armed forces would be given insect repellent to protect against coronavirus infections, but offered no evidence that the product. containing a lemon eucalyptus oil extract, would be effective.a 99-year-old charity fund-raiser — tom moore PERSON , who is also a world war ii EVENT veteran — has the country’s no. 1 CARDINAL song by sales this week DATE , according to the country’s official charts company. like captain moore’s other ventures, the single — a rendition of “you’ll never walk alone,” featuring the singer michael ball PERSON — is to raise money for health care charities during the coronavirus crisis.the virus has infected more than 2,837,000 CARDINAL people in at least 177 CARDINAL countries.the governments of the united states GPE , france GPE and the netherlands GPE are funneling more taxpayer dollars MONEY into airlines to offset the devastating fallout from the coronavirus on the global travel industry.the u.s. GPE treasury department ORG said on saturday DATE that it had given an additional $9.5 billion MONEY to american NORP carriers looking for help to pay employees. the funds, which are part of the $2.2 trillion MONEY stimulus package congress ORG approved last month DATE , brings the total aid to the industry to $12.4 billion.the department also enabled airlines to tap into another $17 billion MONEY lawmakers set aside for businesses considered crucial to national security. france GPE and the netherlands GPE are providing a bailout of 10 billion CARDINAL euros, about $10.8 billion MONEY , to salvage air france-klm, one of europe LOC ’s biggest airlines.air france GPE -klm will receive a €4 billion MONEY bank loan backed by the french NORP state and a €3 billion MONEY direct government loan, france GPE ’s finance minister, said late friday DATE . the dutch NORP government said it would provide an additional €2 billion to €4 billion MONEY in public aid.the infusion falls short of nationalizing the airline, in which the french NORP and dutch NORP states each own a 14 percent PERCENT share. the european commission ORG — the executive branch of the european union ORG , which has thrown out restrictions on state support because of the deep economic downturn — swiftly approved the bailout.the world health organization ORG has warned against using coronavirus antibody tests as a basis for issuing “immunity passports” to allow people to travel or return to work.laboratory tests that detect antibodies to the coronavirus “need further validation to determine their accuracy and reliability,” the global agency said in a statement on friday DATE . inaccurate tests may falsely label people who have been infected as negative, or may falsely label people who have not been infected as positive, it noted.countries like italy GPE and chile GPE have weighed providing “immunity passports” to let those people who have recovered from the virus return to work, in an effort to begin easing lockdown restrictions and stem the economic fallout.in the united states GPE , scientists working around the clock in shifts managed to compare 14 CARDINAL antibody tests on the market, and the news wasn’t good. only one CARDINAL test delivered no false positives — and just two CARDINAL others did well 99 percent PERCENT of the time.the w.h.o. said it supported the testing of medical workers to determine whether they have antibodies, as that data can add to the understanding of how the coronavirus behaves. but it said that most such tests currently “are not designed to determine whether those people are immune to secondary infections.”the assessment came as the w.h.o. held a virtual meeting on friday DATE in which global heads of state vowed to cooperate on coronavirus vaccine research and treatments — though neither the united states GPE nor china GPE joined the initiative.although leaders like chancellor angela merkel PERSON of germany GPE and president emmanuel macron PERSON of france GPE were vague in their pledges, the absence of any u.s. GPE representative at the meeting was the latest sign of a withdrawal of the world’s biggest economy in tackling the coronavirus on a global scale. migrants and others sent about $689 billion MONEY in global remittances in 2018 DATE , according to the world bank ORG — money that relatives and friends back home depend on to survive. but as millions CARDINAL of migrant workers see their hours TIME cut or lose their jobs because of the economic slowdown from the pandemic, the world bank ORG said this week DATE that global remittances were projected to plummet about 20 percent PERCENT this year DATE , in “the sharpest decline in recent history.”and that could have far-reaching effects in some developing and poorer nations like mexico GPE , which was the third ORDINAL -largest recipient of remittances in 2018 DATE — after india GPE and china GPE , according to the world bank ORG — and the largest recipient of money sent from the united states.amid the u.s. GPE economic slowdown in recent weeks DATE , millions CARDINAL of undocumented mexicans NORP in the united states GPE , like other immigrant populations, have been left vulnerable without job security and unemployment benefits.a GPE major decrease in remittances could cause not just economic duress, but also political and social tension, said roy germano PERSON , who teaches international relations at new york university ORG .“i don’t think governments want to see this money contract, because it functions as a sort of de facto social welfare system,” said mr. germano PERSON , the author of “outsourcing welfare,” a book about remittances. “in that way, they take pressure off governments to provide welfare assistance and guarantee a certain standard of living.”“composition vi,” an abstract painting by the russian NORP master wassily kandinsky, has now been restaged in the messy room of a connecticut GPE teenager. his mother, julia vasilenko PERSON , a piano teacher, arranged cymbals, a guitar and a toy boat among the room’s contents to symbolize kandinsky’s musical and ORG marine motifs. a blue latex glove reminds the viewer of the present day DATE . people sheltering in place are seeking new ways to connection online, and amid the pandemic’s bleakness, some report a surge in creativity. maybe this is why a facebook group featuring lo-fi PERSON recreations of famous paintings has more than half a million CARDINAL members, just a few weeks DATE after it was created. the group — izoizolyacia, combining the russian NORP words for “visual arts” and “isolation” — was started in moscow GPE by a project manager at a tech company. its predominant language is russian NORP , but more than a third CARDINAL of its members live outside russia.the copying-artworks gag is not new, and several museums — including the getty in los angeles GPE and the rijksmuseum in amsterdam GPE — are encouraging homebound art fans to send in photos of efforts to bring their favorite paintings to life. but in terms of facebook followers, at least, izoizolyacia’s ORG audience appears to be the most engaged.even as wedding halls and hotels have shuttered, honeymoons evaporated and curfews slammed down, the coronavirus has not quelled couples’ ardor in cairo GPE . and like many others across the middle east LOC , they pushed ahead with weddings this past week DATE . in egypt GPE , some couples shrank their ambitions to small family gatherings. others flouted public health restrictions with secret parties and guerrilla photo shoots. their haste stemmed from a desire to beat the deadline of ramadan, which started friday DATE . the holy month DATE is a solemn period when weddings are rare.some countries are adapting. in the united arab emirates GPE , hurried couples can now obtain wedding licenses online. in kuwait GPE , marriage courts offer services by special appointment — though divorces are unavailable.in saudi arabia GPE , some couples have skipped the once-ironclad tradition of holding a wedding celebration before moving in together, even if they are already legally wed.such scenes of determination in the middle of a major health crisis stem from a simple truth: marriage may be important everywhere, but in the middle east LOC it often cannot wait.in most arab NORP countries, marriage confers independence, the right to live together, cash gifts, a culturally approved sex life and, for women, heightened status in societies still heavily tilted in favor of men.with virus infections in egypt GPE at the low end of the curve, about 3,900 CARDINAL cases for 100 million CARDINAL people, some wedding-goers seemed to believe they were invincible.“this pandemic can’t touch us,” a reveler named islam PERSON said as his wedding party scrambled to take photos on a cairo GPE bridge at a moment when the police were absent. the groom, in a tuxedo and sneakers, posed with the bride, in a white dress. then everyone bundled into three CARDINAL cars and took off.president trump’s daily news briefings on the coronavirus outbreak are inflicting grave damage on his political standing, republicans NORP believe, and his recent remarks about combating the virus with sunlight and disinfectant were a breaking point for a number of senior party officials. new surveys show mr. trump PERSON trailing significantly in battleground states GPE like michigan GPE and pennsylvania GPE , and he is even narrowly behind in must-win florida GPE . mr. trump PERSON ’s suggestion that an injection of disinfectant could help combat the coronavirus prompted warnings on friday DATE from health officials across the country, as well as the makers of clorox and lysol and several fox news personalities.the white house ORG spent much of friday DATE trying to walk back mr. trump PERSON ’s remarks, which he made at thursday DATE ’s press briefing. vice president mike pence PERSON , the head of the white house coronavirus task force ORG , abruptly ended friday DATE ’s daily DATE briefing shortly after it began, and the president took no questions. now, mr. trump PERSON ’s advisers are encouraging him to skip the daily DATE briefings or field fewer questions from the reporters, and mr. trump PERSON himself said on twitter on saturday DATE that they were not in his best interest. “what PERSON is the purpose of having white house news conferences ORG when the lamestream media asks nothing but hostile questions, & then refuses to report the truth or facts accurately,” mr. trump PERSON said on twitter. “they get record ratings, & the american NORP people get nothing but fake news. not worth the time & effort!”here ORG ’s what else is happening in the u.s. GPE : as states begin allowing businesses to reopen, there is uncertainty around how a gradual restart to the economy would work because of interconnected supply chains. and if states reopen their economies too quickly that could lead to a renewed outbreak.governors deciding about opening their economies continue to be hampered by a shortage of testing capacity, leaving them without the information that public health experts say is needed to track outbreaks and contain them. testing capacity remains nowhere near the level mr. trump PERSON suggests it is, and governors, public health officials and hospital executives say they are still scrambling — and competing with one another — to procure the equipment they need. the u.s. GPE conducted about 1.2 million CARDINAL tests in a week DATE , but experts say that is still not enough.two antimalarial drugs — chloroquine and hydroxychloroquine — promoted by mr. trump PERSON as effective against the coronavirus were being prescribed at more than six CARDINAL times the normal rate during the second week of april DATE , a data analysis by the new york times ORG shows. on friday DATE , the food and drug administration ORG warned against using the drugs outside a hospital setting or clinical trial because they could lead to serious heart rhythm problems in some coronavirus patients.john houghton, a climate scientist and leading figure in the united nations ORG panel that brought the threat of climate change to the world’s attention and received a nobel prize WORK_OF_ART , died on april 15 DATE in dolgellau GPE , wales. he was 88.the PERSON cause was complications of the novel coronavirus, according to his granddaughter hannah malcolm PERSON , who announced the death, at a hospital, on twitter.a CARDINAL key participant in the united nations intergovernmental ORG panel on climate change, dr. houghton PERSON was the lead editor of the organization’s first ORDINAL three CARDINAL reports, issued in 1990 DATE , 1995 DATE and 2001 DATE . with each report, the evidence underpinning global warming and the role humans play in causing it grew more ineluctable, and the calls for international action became more pressing. the group received the 2007 DATE nobel peace prize jointly with al gore PERSON , the former vice president and climate campaigner.speaking about climate change in 1994 DATE , dr. houghton PERSON said that delay served no one. “we should start to do what we can do now and also begin to plan to do more,” he said, and “not wait 10 or 20 years DATE till things are more clear.” read the full obituary.with a population of about one million CARDINAL people and an area of 9,000 square miles QUANTITY , djibouti GPE is one CARDINAL of africa LOC ’s smallest countries. but this week DATE the horn of africa LOC nation was listed as having the highest prevalence of coronavirus cases, 986 CARDINAL , in africa.the figure reflects mass coronavirus testing in the country. but officials have also spoken of people not adhering to social distancing and hygiene rules.the state has shut its borders, suspended international flights, and closed schools and all places of worship.“what we are asking of you is to save yourselves, to save your siblings, your mothers and fathers and the old people,” president ismail omar guelleh PERSON said in a recent televised speech. “i ask you to stay at home.”djibouti, at the southern entrance to the red sea LOC , has taken advantage of its location at a busy shipping route and its relative stability in a volatile region to increase its geostrategic relevance. it is home to several foreign military bases, including one CARDINAL of the united states’ GPE largest foreign installations and china GPE ’s first ORDINAL overseas military base. as the coronavirus has spread, these military installations have heightened their safety measures.on ORG april 23 DATE , maj. gen. michael d. turello PERSON , commander of the combined joint task force horn of africa LOC , declared a public health emergency for the u.s. GPE personnel under his authority in djibouti GPE . “combating covid-19 is my top priority,” he said in a statement, referring to the disease caused by the virus. “by declaring a public health emergency, it keeps our forces, and those of our host nation partner, as healthy and as safe as possible.”a park in okinawa city GPE , japan GPE , has mowed down sprawling lily fields that usually draw thousands CARDINAL of people, in an effort to prevent visitors from gathering and spreading the coronavirus.fears of the virus and a nationwide state of emergency declared this month DATE did not deter people from visiting the okinawa comprehensive athletic park, where its lilies were approaching full bloom. in response, the park clipped 10,000 CARDINAL of its 16,000 CARDINAL lilies on friday DATE .“our staff spent a whole year DATE growing them,” seiji fukushima, the park’s director, said on saturday DATE . “they were crying as they cut them off.”despite the emergency declarations this month DATE , many residents across the country still visited beaches, parks and restaurants, raising concerns about its measures to curb the outbreak. mr. fukushima PERSON said many service members of the u.s. GPE military bases in okinawa prefecture had visited or jogged in the park despite social distancing rules, and residents had complained that many of them did not wear masks.the flowers are usually harvested in mid-may DATE , when bulbs are collected and stored for planting later. the park said that the cropped lilies had been distributed to people and that it would use the opportunity to improve its soil this year.as of saturday DATE , japan GPE had more than 13,500 CARDINAL confirmed coronavirus cases and 341 CARDINAL deaths.in israel GPE , where nearly everyone has someone to mourn from wars and continuing conflicts, memorial day — which is observed from monday DATE at sundown until tuesday DATE at sundown — ordinarily draws hundreds of thousands CARDINAL to national cemeteries. but fears that crowds could spread the coronavirus have prompted the government to plead with people to stay away.“it causes me immense pain that i won’t be with my brother on memorial day DATE , but i know the right thing is to stay home,” said frida shniderman PERSON , 72 DATE , referring to her sibling, meir rozenchtroch PERSON , who was killed in the wake of a conflict between israel GPE and syria GPE in 1974 DATE . “cemeteries get very crowded every year DATE . it’s simply too risky to go now.”defense minister naftali bennett PERSON said at a news conference that observing memorial day as in past years DATE would create “a coronavirus ticking time bomb.” about one and a half million CARDINAL israelis NORP usually visit burial grounds across the country during the holiday, he said.some israelis NORP , however, have vowed to go to the cemeteries, arguing that they would not threaten public health as long as they maintain social distancing measures. “my PERSON family and i will go,” said moshe muskal PERSON , 64 DATE , whose son rafanel was killed in conflict between israel GPE and the lebanese NORP militant group hezbollah ORG in 2006 DATE . “ this day DATE is so important to us.”while the government decided that it would not permit israelis NORP to go to cemeteries, the police will not use force to stop them, officials have said.israel had recorded more than 15,000 CARDINAL cases of the virus as of saturday DATE , and nearly 200 CARDINAL deaths.vanuatu, a pacific island LOC nation of 300,000 CARDINAL people, gave sports fans worldwide what they’d been craving on saturday DATE : something to watch, live, with the outcome unknown.cricket may not be everyone ’s cup of tea EVENT , but the vanuatu cricket association ORG livestreamed its women’s super league final, inviting sports fans everywhere to take a break from the recorded footage that many have had to settle for during the pandemic.“we thought it’s our duty to provide the world with some live sport,” said shane deitz PERSON , the chief executive of the vanuatu cricket association ORG and a former player for the australian national team ORG . “it’s one of the only live sports around the world at the moment. we can showcase a bit of cricket for everyone who is in lockdown.”vanuatu, like many other small pacific nations, has managed to keep the coronavirus from spreading, or even arriving, if official figures are correct. the country went into lockdown late last month DATE as a precaution. after it was hit by a major cyclone on april 6 DATE , the lockdown was lifted so that people could recover and rebuild.during the match on saturday DATE , small crowds of fans could be seen surrounding the pitch, standing or sitting a few feet QUANTITY apart, clearly enjoying the sight. comments on the cricket association’s facebook page, where the livestream was shown, thanked vanuatu for sharing.president trump has promised in a tweet to provide ventilators to indonesia GPE , where a rising number of coronavirus cases threatens to overwhelm the country’s poorly equipped and understaffed health care system.“just spoke to my friend, president joko widodo PERSON of the republic of indonesia GPE ,” mr. trump PERSON wrote on friday DATE . “asking for ventilators, which we will provide. great cooperation between us!”in ORG reply, mr. joko’s ORG spokesman, fadjroel rachman PERSON , tweeted on saturday DATE , “thank you very much for great cooperation between the usa and the republic of indonesia mr GPE . president PERSON .” indonesia GPE , with a population of 270 million CARDINAL , is the world’s fourth ORDINAL largest country but has only about 8,400 CARDINAL ventilators to help patients with the coronavirus, which has spread to all 34 CARDINAL provinces.indonesia has reported 720 CARDINAL deaths from the coronavirus, the second ORDINAL highest toll in east asia LOC after china GPE . but some officials say many more deaths have gone unreported.mr GPE . trump also said the united states GPE would send ventilators to three CARDINAL latin american NORP countries — ecuador GPE , el salvador GPE and honduras GPE — that are reeling from the pandemic. he did not say how many ventilators would be sent to any of the four CARDINAL countries or when they would arrive.ecuador’s largest city, guayaquil, has been especially hard hit. hospitals and clinics have been so overwhelmed that they have been unable to treat some patients. bodies have been found abandoned on sidewalks and slumped in wheelchairs.the honduran NORP president, juan orlando PERSON hernández, also spoke with mr. trump PERSON and requested help with ventilators and testing. he said he had also asked for assistance in securing debt relief for poor countries and financial aid from international lenders.in a tweet on friday DATE evening TIME about his conversation with the honduran NORP president, mr. trump PERSON said, “we work closely together on the southern border. will be helping him with his request for ventilators and testing.”reporting was contributed by lara jakes GPE , anton troianovski PERSON , andrew e. kramer PERSON , kai schultz PERSON , dera menra sijabat, vikas bajaj, richard c. paddock PERSON , tiffany may, mike ives PERSON , kirk semple, elian peltier PERSON , john schwartz PERSON , caitlin dickerson PERSON , liz alderman PERSON , tess felder, elaine yu PERSON , hisako ueno PERSON , adam rasgon PERSON , adam nossiter PERSON , evan easterling PERSON , andrew lavallee PERSON , joshua barone PERSON , damien cave PERSON , jin wu PERSON , declan walsh PERSON , maggie haberman PERSON , jonathan martin PERSON , alexandra stevenson PERSON , raphael minder PERSON , abdi latif dahir PERSON , nicholas kulish PERSON , ernesto londoño PERSON , letícia casado ORG , manuela andreoni PERSON and david gelles PERSON . wang yiwei PERSON contributed research.updated april 11 DATE , 2020this is a difficult question, because a lot depends on how well the virus is contained. a better question might be: “how will we know when to reopen the country?” in an american enterprise institute ORG report, scott gottlieb PERSON , caitlin rivers PERSON , mark b. mcclellan PERSON , lauren silvis PERSON and crystal watson PERSON staked out four CARDINAL goal posts for recovery: hospitals in the state must be able to safely treat all patients requiring hospitalization, without resorting to crisis standards of care; the state needs to be able to at least test everyone who has symptoms; the state is able to conduct monitoring of confirmed cases and contacts; and there must be a sustained reduction in cases for at least 14 CARDINAL days.the times neediest cases fund has started a special campaign to help those who have been affected, which accepts donations here. charity navigator, which evaluates charities using a numbers-based system, has a running list of nonprofits working in communities affected by the outbreak. you can give blood through the american red cross ORG , and world central kitchen has stepped in to distribute meals in major cities. more than 30,000 CARDINAL coronavirus-related gofundme fund-raisers have started in the past few weeks DATE . (the sheer number of fund-raisers means more of them are likely to fail to meet their goal, though.)if GPE you’ve been exposed to the coronavirus or think you have, and have a fever or symptoms like a cough or difficulty breathing, call a doctor. they should give you advice on whether you should be tested, how to get tested, and how to seek medical treatment without potentially infecting or exposing others.the c.d.c. has recommended that all americans NORP wear cloth masks if they go out in public. this is a shift in federal guidance reflecting new concerns that the coronavirus is being spread by infected people who have no symptoms. until now, the c.d.c. GPE , like the w.h.o., has advised that ordinary people don’t need to wear masks unless they are sick and coughing. part of the reason was to preserve medical-grade masks for health care workers who desperately need them at a time when they are in continuously short supply. masks don’t replace hand washing and social distancing.if PERSON you’re sick and you think you’ve been exposed to the new coronavirus, the c.d.c. recommends that you call your healthcare provider and explain your symptoms and fears. they will decide if you need to be tested. keep in mind that there’s a chance — because of a lack of testing kits or because you’re asymptomatic, for instance — you won’t be able to get tested.it PERSON seems to spread very easily from person to person, especially in homes, hospitals and other confined spaces. the pathogen can be carried on tiny respiratory droplets that fall as they are coughed or sneezed out. it may also be transmitted when we touch a contaminated surface and then touch our face.no. clinical trials are underway in the united states GPE , china GPE and europe LOC . but american NORP officials and pharmaceutical executives have said that a vaccine remains at least 12 CARDINAL to 18 months away.unlike the flu, there is no known treatment or vaccine, and little is known about this particular virus so far. it seems to be more lethal than the flu, but the numbers are still uncertain. and it hits the elderly and those with underlying conditions — not just those with respiratory diseases — particularly hard.if the family member doesn’t need hospitalization and can be cared for at home, you should help him or her with basic needs and monitor the symptoms, while also keeping as much distance as possible, according to guidelines issued by the c.d.c. if there’s space, the sick family member should stay in a separate room and use a separate bathroom. if masks are available, both the sick person and the caregiver should wear them when the caregiver enters the room. make sure not to share any dishes or other household items and to regularly clean surfaces like counters, doorknobs, toilets and tables. don’t forget to wash your hands frequently.plan two weeks DATE of meals if possible. but people should not hoard food or supplies. despite the empty shelves, the supply chain remains strong. and remember to wipe the handle of the grocery cart with a disinfecting wipe and wash your hands as soon as you get home.yes, but make sure you keep six feet QUANTITY of distance between you and people who don’t live in your home. even if you just hang out in a park, rather than go for a jog or a walk, getting some fresh air, and hopefully sunshine, is a good idea.that’s not a good idea. even if you’re retired, having a balanced portfolio of stocks and bonds so that your money keeps up with inflation, or even grows, makes sense. but retirees may want to think about having enough cash set aside for a year’s worth of living expenses and big payments needed over the next five years.watching DATE your balance go up and down can be scary. you may be wondering if you should decrease your contributions — don’t! if your employer matches any part of your contributions, make sure you’re at least saving as much as you can to get that “free money.”advertisement
In [14]:
displacy.render(docs , style = 'dep', jupyter = True, options = {'distance': 100})
advertisementbelarus, PROPN led VERB by ADP a DET virus- NOUN denying VERB autocrat, NOUN has AUX imposed VERB no DET lockdowns. NOUN brazil PROPN ’s PART leader, NOUN who PRON has AUX played VERB down ADP the DET virus, NOUN faces VERB an DET uncertain ADJ future.right NOUN nowafter NOUN a DET backlash NOUN to ADP his PRON suggestion NOUN that SCONJ injecting VERB disinfectants NOUN could AUX combat VERB the DET coronavirus, NOUN president NOUN trump PROPN indicates VERB his PRON daily ADJ white PROPN house NOUN briefings NOUN are AUX no ADV longer ADV worth ADJ his PRON time.many NOUN americans PROPN who PRON had AUX assumed VERB they PRON could AUX stay VERB overseas ADV till SCONJ the DET pandemic NOUN ebbed VERB now ADV face VERB an DET unnerving ADJ choice: NOUN either CCONJ prepare VERB for ADP the DET possibility NOUN of ADP being AUX infected VERB and CCONJ treated VERB in ADP foreign ADJ hospitals, NOUN or CCONJ risk NOUN infection NOUN on ADP the DET way NOUN back ADV to ADP the DET united PROPN states.the PROPN u.s. PROPN state PROPN department, PROPN warning VERB that SCONJ commercial ADJ flights NOUN from ADP overseas ADJ may AUX end VERB in ADP the DET coming VERB days, NOUN is AUX urging VERB americans PROPN abroad ADV to PART grab VERB any DET opportunity NOUN to PART board VERB them.flights NOUN organized VERB by ADP the DET state PROPN department NOUN that PRON have AUX so ADV far ADV returned VERB 65,000 NUM americans PROPN from ADP across ADP the DET world NOUN are AUX winding VERB down. ADP some DET continue VERB in ADP limited ADJ numbers, NOUN in ADP areas NOUN like SCONJ the DET indian ADJ subcontinent NOUN and CCONJ africa. PROPN and CCONJ american ADJ diplomats NOUN have AUX helped VERB commercial ADJ airlines NOUN cut VERB through ADP foreign ADJ regulations NOUN that PRON have AUX restricted VERB flights NOUN in ADP and CCONJ out SCONJ of ADP some DET countries NOUN during ADP the DET pandemic. NOUN but CCONJ there PRON still ADV are AUX at ADP least ADV 17,000 NUM american ADJ citizens NOUN or CCONJ legal ADJ residents NOUN abroad ADV who PRON have AUX indicated VERB they PRON need VERB help.officials NOUN are AUX suggesting VERB that SCONJ the DET risk NOUN of ADP contracting VERB the DET virus NOUN from ADP traveling VERB on ADP any DET kind NOUN of ADP flight NOUN is AUX offset VERB by ADP disparities NOUN in ADP health NOUN care NOUN systems. NOUN “you PRON can AUX come VERB back ADV to ADP the DET united PROPN states PROPN where ADV you PRON are AUX a DET citizen NOUN and CCONJ you PRON have AUX access NOUN to ADP health NOUN care NOUN and CCONJ you PRON have AUX access NOUN to ADP an DET infrastructure NOUN that PRON is AUX still ADV intact,” ADJ said VERB dr. PROPN william PROPN walters, PROPN the DET state PROPN department PROPN ’s PROPN deputy ADJ chief ADJ medical ADJ officer. NOUN but CCONJ by ADP hunkering VERB down, ADP in ADP developing VERB countries NOUN in ADP particular, ADJ where ADV the DET virus NOUN has AUX yet ADV to PART peak, “ VERB you PRON will AUX be AUX an DET american ADJ citizen NOUN in ADP a DET foreign ADJ country NOUN that PRON did AUX n’t PART have AUX great ADJ infrastructure NOUN to PART begin VERB with. ADP ”and PROPN students NOUN studying VERB abroad ADV in ADP the DET united PROPN states PROPN have AUX been AUX stranded VERB with ADP dwindling VERB financial ADJ resources.many NOUN of ADP the DET more ADJ than SCONJ a DET million NUM international ADJ students NOUN who PRON left VERB their PRON home NOUN countries NOUN to PART study VERB in ADP the DET united PROPN states PROPN had AUX been AUX living VERB in ADP college NOUN dorms. NOUN they PRON were AUX left VERB to PART find VERB new ADJ housing NOUN after ADP campuses NOUN shutdown. VERB a DET substantial ADJ number NOUN of ADP them PRON are AUX also ADV watching VERB their PRON financial ADJ lives NOUN fall VERB apart. ADV visa NOUN restrictions NOUN prevent VERB them PRON from ADP working VERB off ADP campus, NOUN but CCONJ campuses NOUN are AUX now ADV closed. ADJ and CCONJ while SCONJ some DET come VERB from ADP families NOUN wealthy ADJ enough ADV to PART pay VERB for ADP their PRON housing NOUN or CCONJ whisk VERB them PRON home, ADV many ADJ others NOUN had AUX already ADV been AUX struggling VERB to ADP cobble ADJ together ADP tuition NOUN fees, NOUN which PRON tend VERB to PART be AUX much ADV higher ADJ for ADP international ADJ students. NOUN and CCONJ many ADJ currencies’ NOUN values NOUN have AUX collapsed VERB relative ADJ to ADP the DET u.s. PROPN dollar.some PROPN international ADJ students NOUN say VERB they PRON have AUX had VERB to PART turn VERB to ADP food NOUN banks. NOUN others NOUN are AUX couch NOUN surfing VERB in ADP the DET friends’ NOUN homes, NOUN but CCONJ do AUX n’t PART know VERB how ADV long ADV they PRON will AUX be AUX welcome. ADJ those DET who PRON were AUX able ADJ to PART fly VERB home ADV before ADP international ADJ borders NOUN closed VERB are AUX now ADV not PART sure ADJ they PRON will AUX be AUX able ADJ to PART come VERB back ADV to PART finish VERB their PRON studies.prime PROPN minister PROPN pedro PROPN sánchez PROPN said VERB on ADP saturday PROPN evening NOUN that SCONJ spaniards NOUN would AUX be AUX allowed VERB outdoors ADV to PART take VERB a DET stroll NOUN or CCONJ exercise NOUN as SCONJ of ADP may PROPN 2 NUM if SCONJ the DET country NOUN ’s PART coronavirus PROPN numbers NOUN continued VERB to PART improve VERB over ADP the DET coming VERB week.in NOUN a DET televised VERB address, NOUN mr. PROPN sánchez PROPN did AUX n’t PART detail VERB what PRON limits NOUN to ADP sports NOUN would AUX still ADV apply. VERB but CCONJ his PRON announcement NOUN came VERB as SCONJ spanish ADJ children NOUN prepared VERB to PART go VERB outdoors ADV on ADP sunday PROPN for ADP the DET first ADJ time NOUN since SCONJ the DET lockdown NOUN came VERB into ADP force NOUN in ADP mid- NOUN march. PROPN they PRON will AUX be AUX able ADJ to PART stroll VERB for ADP one NUM hour NOUN within ADP one NUM kilometer NOUN of ADP their PRON homes NOUN when ADV accompanied VERB by ADP an DET adult.mr. PROPN sánchez PROPN also ADV said VERB that SCONJ the DET easing VERB spain PROPN ’s PROPN lockdown NOUN would AUX be “ VERB gradual ADJ and CCONJ asymmetrical, ADJ but CCONJ coordinated.” VERB some DET regional ADJ and CCONJ local ADJ leaders NOUN ague VERB that SCONJ their PRON areas NOUN have AUX already ADV contained VERB the DET epidemic, NOUN and CCONJ they PRON are AUX pushing VERB to PART reduce VERB lockdown ADJ measures NOUN locally ADV ahead ADV of ADP any DET national ADJ easing.spain NOUN reported VERB a DET slight ADJ uptick NOUN in ADP its PRON daily ADJ death NOUN toll NOUN with ADP 378 NUM dead ADJ on ADP saturday, PROPN compared VERB to ADP 367 NUM on ADP friday. PROPN but CCONJ the DET country NOUN crossed VERB a DET significant ADJ milestone NOUN this DET week NOUN by ADP registering VERB more ADJ hospital NOUN recoveries NOUN than SCONJ new ADJ coronavirus PROPN cases.the PROPN country PROPN ’s PROPN lockdown NOUN has AUX been AUX extended VERB until ADP may PROPN 9. NUM but CCONJ some DET local ADJ and CCONJ regional ADJ politicians NOUN have AUX stressed VERB that SCONJ the DET daily ADJ number NOUN of ADP coronavirus PROPN fatalities NOUN has AUX fallen VERB to ADP below ADP 10 NUM a DET day NOUN in ADP half NOUN of ADP spain PROPN ’s PART 17 NUM regions. NOUN the DET push NOUN for ADP local ADJ easing NOUN of ADP restrictions NOUN has AUX particularly ADV come VERB from ADP islands NOUN as ADV well ADV as SCONJ southern ADJ regions NOUN whose PRON hospitals NOUN were AUX never ADV overwhelmed ADJ with ADP covid-19 PROPN patients.as PROPN brazil PROPN ’s PROPN coronavirus PROPN contagion NOUN accelerated VERB this DET past ADJ week, NOUN with ADP nearly ADV 53,000 NUM confirmed VERB cases NOUN and CCONJ 3,670 NUM deaths, NOUN speculation NOUN intensified VERB over ADP how ADV much ADV longer ADJ president PROPN jair PROPN bolsonaro PROPN would AUX last VERB in ADP power.in X recent ADJ weeks, NOUN mr. PROPN bolsonaro PROPN ’s PROPN strikingly ADV dismissive ADJ response NOUN to ADP the DET coronavirus PROPN pandemic, NOUN which PRON he PRON has AUX called VERB a “ DET measly ADV cold” ADJ that PRON can VERB not PART be AUX allowed VERB to PART throttle VERB economic ADJ growth, NOUN generated VERB calls NOUN for ADP impeachment NOUN at ADP home NOUN and CCONJ bewilderment NOUN abroad.he PROPN was AUX already ADV struggling VERB to PART govern VERB effectively ADV when, ADV on ADP friday, PROPN his PRON star NOUN cabinet NOUN minister PROPN resigned VERB with ADP an DET explosive ADJ speech NOUN that PRON basically ADV called VERB his PRON soon- ADV to- PART be AUX former ADJ boss NOUN a DET criminal.mr. PROPN bolsonaro PROPN became VERB a DET president NOUN without ADP a DET political ADJ party NOUN in ADP november, PROPN after ADP falling VERB out ADP with ADP leaders NOUN of ADP the DET social PROPN liberal PROPN party, PROPN which PRON had AUX backed VERB his PRON presidential ADJ bid. NOUN and CCONJ several ADJ political ADJ allies — NOUN including VERB two NUM of ADP mr. PROPN bolsonaro PROPN ’s PROPN sons — NOUN are AUX under ADP investigation NOUN in ADP a DET series NOUN of ADP criminal ADJ and CCONJ legislative ADJ inquiries.given NOUN those DET challenges, NOUN which PRON have AUX left VERB mr. PROPN bolsonaro PROPN deeply ADV isolated, VERB the DET dramatic ADJ exit NOUN of ADP his PRON justice NOUN minister PROPN was AUX seen VERB by ADP critics NOUN and CCONJ supporters NOUN of ADP the DET president NOUN as SCONJ a DET potentially ADV destructive ADJ blow NOUN to ADP his PRON grip NOUN on ADP power NOUN during ADP a DET public ADJ health NOUN crisis NOUN and CCONJ a DET recession.and, NOUN while SCONJ several ADJ latin ADJ american ADJ leaders NOUN have AUX seen VERB a DET bounce NOUN in ADP public ADJ opinion NOUN as SCONJ they PRON imposed VERB strict ADJ quarantine NOUN measures NOUN to PART curb VERB the DET spread NOUN of ADP the DET coronavirus, PROPN mr. PROPN bolsonaro PROPN ’s PROPN popularity NOUN has AUX dropped VERB amid ADP what PRON critics NOUN call VERB a DET flailing NOUN response. NOUN as SCONJ he PRON headed VERB off ADP the DET ice NOUN after ADP playing VERB a DET hockey NOUN game NOUN in ADP an DET amateur ADJ tournament NOUN in ADP late ADJ march, PROPN the DET leader NOUN of ADP belarus PROPN brushed VERB aside ADV reporters’ NOUN anxious ADJ questions NOUN about ADP the DET coronavirus PROPN pandemic. NOUN “there PRON are AUX no DET viruses NOUN here,” ADV said VERB the DET belarusian ADJ president, NOUN aleksandr PROPN g. PROPN lukashenko, PROPN gesturing VERB to ADP the DET crowded ADJ arena. “ NOUN do AUX you PRON see VERB any DET of ADP them PRON flying VERB around? ADV i PRON do AUX n’t PART see VERB them PRON either. ADV ”at PROPN a DET time NOUN when ADV some DET countries, NOUN like SCONJ germany PROPN and CCONJ denmark, PROPN having VERB tamped VERB down ADP the DET initial ADJ outbreak NOUN of ADP the DET virus, NOUN are AUX experimenting VERB with ADP cautious ADJ openings NOUN of ADP businesses NOUN and CCONJ schools, NOUN belarus PROPN is AUX an DET outlier. NOUN it PRON never ADV imposed VERB any DET restrictions NOUN at ADP all.restaurants, NOUN coffee NOUN shops NOUN and CCONJ movie NOUN theaters NOUN remain VERB open. ADJ last ADJ weekend, NOUN churches NOUN were AUX packed VERB for ADP orthodox ADJ easter. NOUN professional ADJ soccer NOUN is AUX in ADP full ADJ swing, NOUN though SCONJ the DET roaring VERB crowds NOUN of ADP earlier ADV this DET month NOUN have AUX thinned. VERB in ADP the DET capital, NOUN minsk, PROPN the DET subways NOUN are AUX crowded. VERB most ADJ businesses NOUN require VERB workers NOUN to PART show VERB up.neither ADP the DET raw ADJ numbers NOUN of ADP infections, NOUN nearly ADV 9,000, NUM nor CCONJ the DET total ADJ deaths, NOUN 63, NUM suggest VERB that SCONJ belarus PROPN ’s PROPN epidemic NOUN is AUX grossly ADV disproportionate, ADJ though SCONJ ukraine PROPN with ADP four NUM times NOUN the DET population NOUN has AUX fewer ADJ reported VERB cases.however, NOUN few ADJ people NOUN believe VERB the DET official ADJ tallies; NOUN there PRON is AUX some DET evidence NOUN that SCONJ the DET true ADJ numbers NOUN are AUX being AUX suppressed.without ADV a DET free ADJ press NOUN or CCONJ any DET viable ADJ opposition NOUN parties, NOUN belarusians PROPN have AUX little ADJ recourse NOUN to PART challenge VERB the DET response. NOUN caught VERB in ADP the DET grip NOUN of ADP an DET autocrat NOUN whom PRON critics NOUN are AUX calling VERB one NUM of ADP the DET world NOUN ’s PART foremost ADJ virus NOUN deniers, NOUN they PRON have AUX little ADJ choice NOUN but SCONJ to PART accept VERB official ADJ policy: NOUN the DET economy NOUN will AUX keep VERB chugging VERB along, ADV whatever PRON the DET cost NOUN in ADP human ADJ lives.the ADJ metropolitan PROPN opera PROPN ’s PROPN at- ADP home NOUN gala — NOUN a DET worldwide ADJ relay NOUN of ADP live ADJ streamed ADJ performances NOUN that, PRON in ADP contrast NOUN to ADP opera PROPN ’s PROPN usual ADJ grandeur, NOUN was AUX filmed VERB using VERB only ADJ household NOUN devices — NOUN was AUX presented VERB at ADP metopera.org PROPN and CCONJ will AUX remain VERB available ADJ until ADP sunday PROPN evening NOUN eastern ADJ time. NOUN it PRON has AUX an DET only- ADJ in- ADP opera NOUN level NOUN of ADP aspiration NOUN and CCONJ difficulty: NOUN a DET roster NOUN of ADP more ADJ than SCONJ 40 NUM of ADP the DET company NOUN ’s PART starriest ADJ singers, NOUN plus CCONJ members NOUN of ADP the DET orchestra NOUN and CCONJ chorus, NOUN performing VERB live ADV across ADP nine NUM time NOUN zones. NOUN among ADP them PRON are AUX lisette PROPN oropesa, PROPN in ADP baton PROPN rouge, PROPN la.; PROPN anna PROPN netrebko, PROPN in ADP vienna; PROPN and CCONJ piotr PROPN beczala, PROPN in ADP what PRON he PRON described VERB to ADP peter PROPN gelb, PROPN the DET met PROPN ’s PROPN general ADJ manager, NOUN as SCONJ a DET village NOUN at ADP the DET end NOUN of ADP the DET earth NOUN in ADP poland.the PROPN met VERB halted VERB performances NOUN on ADP march PROPN 12 NUM in ADP response NOUN to ADP the DET coronavirus PROPN pandemic — NOUN and CCONJ eventually ADV canceled VERB the DET remainder NOUN of ADP its PRON season. NOUN mr. PROPN gelb — PROPN who PRON hosted VERB from ADP new PROPN york PROPN along ADP with ADP yannick ADJ nézet- PROPN séguin, PROPN the DET met PROPN ’s PROPN music NOUN director, NOUN who PRON is AUX in ADP montreal — PROPN said VERB that SCONJ the DET idea NOUN came VERB about ADP because “ ADP i PRON am AUX determined ADJ to PART keep VERB the DET met NOUN in ADP the DET consciousness NOUN of ADP the DET broader ADJ public, NOUN and CCONJ i PRON am AUX determined ADJ to PART use VERB any DET possible ADJ means NOUN to PART do AUX that. DET ”since PROPN the DET opera PROPN house PROPN went VERB dark, ADJ it PRON has AUX posted VERB a DET free ADJ stream NOUN from ADP its PRON vast ADJ met VERB opera NOUN on ADP demand PROPN library PROPN every DET night. ( NOUN mr. PROPN gelb PROPN said VERB that SCONJ in ADP the DET past ADJ five NUM weeks, NOUN the DET number NOUN of ADP paid VERB subscribers NOUN to ADP that DET on- ADP demand NOUN service NOUN has AUX doubled, VERB to ADP 30,000.) NUM each DET stream NOUN is AUX accompanied VERB by ADP a “ DET donate NOUN now” ADV button; NOUN the DET at- ADP home NOUN gala NOUN has AUX one, NUM too, ADV though SCONJ mr. PROPN gelb PROPN was AUX quick ADJ to PART emphasize VERB that SCONJ this DET is AUX not “ ADV a DET pbs PROPN telethon. PROPN ”as X the DET drumbeat NOUN grows VERB for ADP transparency NOUN about ADP the DET secretive ADJ group NOUN guiding VERB britain PROPN ’s PART response NOUN to ADP the DET coronavirus — NOUN the DET scientific ADJ advisory ADJ group NOUN for ADP emergencies, NOUN or CCONJ sage — NOUN the DET government NOUN acknowledged VERB that SCONJ prime PROPN minister PROPN boris PROPN johnson PROPN ’s PROPN most ADV senior ADJ aide, NOUN dominic NOUN cummings, NOUN has AUX listened VERB in ADP on ADP the DET panel NOUN ’s NOUN meetings.but PROPN a DET spokesman NOUN for ADP downing VERB street PROPN said VERB on ADP saturday PROPN that SCONJ mr. PROPN cummings PROPN was AUX not PART a DET member NOUN of ADP the DET group NOUN and CCONJ did AUX not PART influence VERB policy. NOUN “no. X 10 NUM officials NOUN and CCONJ officials NOUN from ADP other ADJ departments NOUN attend/ VERB dial VERB in ADP to PART sage VERB to PART listen VERB to ADP its PRON discussions NOUN and CCONJ occasionally ADV ask VERB questions, NOUN which PRON is AUX essential ADJ at ADP a DET time NOUN the DET government NOUN is AUX dealing VERB with ADP a DET global ADJ pandemic,” NOUN downing PROPN street PROPN said VERB in ADP a DET statement.on PROPN saturday PROPN britain PROPN ’s PROPN department PROPN of ADP health PROPN and CCONJ social ADJ care NOUN said VERB that SCONJ the DET number NOUN of ADP deaths NOUN in ADP the DET country NOUN had AUX surpassed VERB 20,000 NUM and CCONJ that SCONJ the DET number NOUN of ADP confirmed VERB cases NOUN is AUX nearing VERB 150,000. NUM britain PROPN is AUX the DET fifth ADJ country NOUN to PART record VERB that SCONJ many ADJ deaths, NOUN though SCONJ its PRON tally NOUN does AUX not PART include VERB deaths NOUN outside ADP of ADP hospitals. “ NOUN it PRON ’s VERB a DET very ADV sad ADJ day NOUN for ADP the DET nation; NOUN 20,000 NUM deaths NOUN is AUX clearly ADV 20,000 NUM too ADV many,” ADJ stephen PROPN powis, PROPN the DET medical ADJ director NOUN of ADP the DET national PROPN health PROPN service PROPN in ADP england, PROPN said VERB on ADP saturday PROPN at ADP a DET news NOUN conference. NOUN opposition NOUN leaders NOUN have AUX demanded VERB more ADJ transparency NOUN from ADP the DET group, NOUN whose PRON members NOUN are AUX largely ADV anonymous ADJ and CCONJ whose PRON meetings NOUN are AUX held VERB in ADP private. ADJ the DET british ADJ government NOUN says VERB it PRON is AUX being “ VERB guided VERB by ADP the DET science” NOUN coming VERB from ADP the DET group, NOUN but CCONJ critics NOUN say VERB the DET science NOUN is AUX unclear.jonathan PROPN ashworth, PROPN who PRON oversees VERB the DET opposition NOUN the DET labour PROPN party PROPN ’s PROPN health NOUN policy, NOUN called VERB on ADP the DET government NOUN to PART publish VERB the DET minutes NOUN of ADP the DET panel NOUN ’s PROPN meetings. “ NOUN we PRON need VERB to PART understand VERB whether SCONJ mr. PROPN cummings PROPN was AUX contributing VERB to ADP the DET debate NOUN or CCONJ influencing VERB the DET debate,” NOUN he PRON told VERB sky PROPN news NOUN on ADP saturday.the DET developments NOUN came VERB as SCONJ leaked VERB cabinet NOUN briefings NOUN to ADP the DET guardian NOUN newspaper NOUN indicated VERB that SCONJ ministers NOUN were AUX warned VERB last ADJ year NOUN that SCONJ britain PROPN risked VERB facing VERB an DET influenza- NOUN type NOUN outbreak NOUN and CCONJ that SCONJ the DET country NOUN needed VERB a DET robust ADJ plan NOUN to PART deal VERB with ADP it. PRON a DET possible ADJ pandemic NOUN was AUX at ADP the DET top NOUN of ADP a DET confidential ADJ annual ADJ national ADJ security NOUN risk NOUN assessment NOUN signed VERB off ADP by ADP the DET government NOUN ’s PART chief ADJ scientific ADJ adviser.in NOUN other ADJ developments NOUN in ADP britain: PROPN the DET government NOUN ’s PART website NOUN for ADP essential ADJ workers NOUN and CCONJ their PRON families NOUN to ADP book NOUN coronavirus PROPN tests NOUN reopened VERB on ADP saturday PROPN after ADP shutting VERB down ADP the DET day NOUN before ADV when ADV tens NOUN of ADP thousands NOUN of ADP requests NOUN flooded VERB it. PRON but CCONJ the DET maximum ADJ capacity NOUN had AUX been AUX reached VERB by ADP 8 NUM a.m. NOUN on ADP saturday, PROPN according VERB to ADP a DET message NOUN published VERB on ADP the DET website.the PUNCT defense PROPN ministry PROPN said VERB on ADP friday PROPN that SCONJ the DET country NOUN ’s PART armed ADJ forces NOUN would AUX be AUX given VERB insect ADJ repellent NOUN to PART protect VERB against ADP coronavirus PROPN infections, NOUN but CCONJ offered VERB no DET evidence NOUN that SCONJ the DET product. NOUN containing VERB a DET lemon NOUN eucalyptus NOUN oil NOUN extract, NOUN would AUX be AUX effective.a NUM 99-year- NUM old ADJ charity NOUN fund- NOUN raiser — NOUN tom PROPN moore, PROPN who PRON is AUX also ADV a DET world PROPN war PROPN ii PROPN veteran — NOUN has AUX the DET country NOUN ’s PART no. NOUN 1 NUM song NOUN by ADP sales NOUN this DET week, NOUN according VERB to ADP the DET country NOUN ’s PART official ADJ charts NOUN company. NOUN like INTJ captain PROPN moore PROPN ’s PROPN other ADJ ventures, NOUN the DET single — ADJ a DET rendition NOUN of “ ADP you PRON ’ll VERB never ADV walk VERB alone,” ADJ featuring VERB the DET singer NOUN michael PROPN ball — PROPN is AUX to PART raise VERB money NOUN for ADP health NOUN care NOUN charities NOUN during ADP the DET coronavirus PROPN crisis.the PROPN virus NOUN has AUX infected VERB more ADJ than SCONJ 2,837,000 NUM people NOUN in ADP at ADV least ADJ 177 NUM countries.the SYM governments NOUN of ADP the DET united PROPN states, PROPN france PROPN and CCONJ the DET netherlands NOUN are AUX funneling VERB more ADJ taxpayer NOUN dollars NOUN into ADP airlines NOUN to PART offset VERB the DET devastating ADJ fallout NOUN from ADP the DET coronavirus NOUN on ADP the DET global ADJ travel NOUN industry.the PUNCT u.s. PROPN treasury PROPN department PROPN said VERB on ADP saturday PROPN that SCONJ it PRON had AUX given VERB an DET additional ADJ $ SYM 9.5 NUM billion NUM to ADP american ADJ carriers NOUN looking VERB for ADP help NOUN to PART pay VERB employees. NOUN the DET funds, NOUN which PRON are AUX part NOUN of ADP the DET $ SYM 2.2 NUM trillion NUM stimulus PROPN package NOUN congress PROPN approved VERB last ADJ month, NOUN brings VERB the DET total ADJ aid NOUN to ADP the DET industry NOUN to ADP $ SYM 12.4 NUM billion.the PROPN department NOUN also ADV enabled VERB airlines NOUN to PART tap VERB into ADP another DET $ SYM 17 NUM billion NUM lawmakers NOUN set VERB aside ADV for ADP businesses NOUN considered VERB crucial ADJ to ADP national ADJ security. NOUN france PROPN and CCONJ the DET netherlands PROPN are AUX providing VERB a DET bailout NOUN of ADP 10 NUM billion NUM euros, NOUN about ADP $ SYM 10.8 NUM billion, NUM to PART salvage VERB air PROPN france- PROPN klm, PROPN one NUM of ADP europe PROPN ’s PART biggest ADJ airlines.air PROPN france- PROPN klm PROPN will AUX receive VERB a DET SYM 4 NUM billion NUM bank NOUN loan NOUN backed VERB by ADP the DET french ADJ state NOUN and CCONJ a DET SYM 3 NUM billion NUM direct ADJ government NOUN loan, NOUN france PROPN ’s PROPN finance PROPN minister, PROPN said VERB late ADJ friday. PROPN the DET dutch ADJ government NOUN said VERB it PRON would AUX provide VERB an DET additional ADJ NOUN 2 NUM billion NUM to PART SYM 4 NUM billion NUM in ADP public NOUN aid.the DET infusion NOUN falls VERB short ADV of ADP nationalizing VERB the DET airline, NOUN in ADP which PRON the DET french ADJ and CCONJ dutch ADJ states NOUN each DET own ADJ a DET 14 NUM percent NOUN share. NOUN the DET european PROPN commission — PROPN the DET executive ADJ branch NOUN of ADP the DET european PROPN union, PROPN which PRON has AUX thrown VERB out ADP restrictions NOUN on ADP state NOUN support NOUN because SCONJ of ADP the DET deep ADJ economic ADJ downturn — NOUN swiftly ADV approved VERB the DET bailout.the PROPN world PROPN health PROPN organization PROPN has AUX warned VERB against ADP using VERB coronavirus PROPN antibody NOUN tests NOUN as SCONJ a DET basis NOUN for ADP issuing “ VERB immunity NOUN passports” NOUN to PART allow VERB people NOUN to PART travel VERB or CCONJ return VERB to ADP work.laboratory ADJ tests NOUN that PRON detect VERB antibodies NOUN to ADP the DET coronavirus “ NOUN need VERB further ADJ validation NOUN to PART determine VERB their PRON accuracy NOUN and CCONJ reliability,” NOUN the DET global ADJ agency NOUN said VERB in ADP a DET statement NOUN on ADP friday. PROPN inaccurate ADJ tests NOUN may AUX falsely ADV label VERB people NOUN who PRON have AUX been AUX infected VERB as SCONJ negative, ADJ or CCONJ may AUX falsely ADV label VERB people NOUN who PRON have AUX not PART been AUX infected VERB as SCONJ positive, ADJ it PRON noted.countries VERB like SCONJ italy PROPN and CCONJ chile PROPN have AUX weighed VERB providing “ VERB immunity NOUN passports” NOUN to PART let VERB those DET people NOUN who PRON have AUX recovered VERB from ADP the DET virus NOUN return NOUN to ADP work, NOUN in ADP an DET effort NOUN to PART begin VERB easing VERB lockdown NOUN restrictions NOUN and CCONJ stem VERB the DET economic ADJ fallout.in NOUN the DET united PROPN states, PROPN scientists NOUN working VERB around ADP the DET clock NOUN in ADP shifts NOUN managed VERB to PART compare VERB 14 NUM antibody NOUN tests NOUN on ADP the DET market, NOUN and CCONJ the DET news NOUN was AUX n’t PART good. ADJ only ADV one NUM test NOUN delivered VERB no DET false ADJ positives — NOUN and CCONJ just ADV two NUM others NOUN did AUX well ADV 99 NUM percent NOUN of ADP the DET time.the PROPN w.h.o. PROPN said VERB it PRON supported VERB the DET testing NOUN of ADP medical ADJ workers NOUN to PART determine VERB whether SCONJ they PRON have AUX antibodies, NOUN as SCONJ that DET data NOUN can AUX add VERB to ADP the DET understanding NOUN of ADP how ADV the DET coronavirus NOUN behaves. VERB but CCONJ it PRON said VERB that SCONJ most ADV such ADJ tests NOUN currently “ ADV are AUX not PART designed VERB to PART determine VERB whether SCONJ those DET people NOUN are AUX immune ADJ to ADP secondary ADJ infections. NOUN ”the DET assessment NOUN came VERB as SCONJ the DET w.h.o. PROPN held VERB a DET virtual ADJ meeting NOUN on ADP friday PROPN in ADP which PRON global ADJ heads NOUN of ADP state NOUN vowed VERB to PART cooperate VERB on ADP coronavirus PROPN vaccine NOUN research NOUN and CCONJ treatments — NOUN though SCONJ neither CCONJ the DET united PROPN states PROPN nor CCONJ china PROPN joined VERB the DET initiative.although ADJ leaders NOUN like SCONJ chancellor PROPN angela PROPN merkel PROPN of ADP germany PROPN and CCONJ president PROPN emmanuel PROPN macron PROPN of ADP france PROPN were AUX vague ADJ in ADP their PRON pledges, NOUN the DET absence NOUN of ADP any DET u.s. PROPN representative NOUN at ADP the DET meeting NOUN was AUX the DET latest ADJ sign NOUN of ADP a DET withdrawal NOUN of ADP the DET world NOUN ’s PART biggest ADJ economy NOUN in ADP tackling VERB the DET coronavirus NOUN on ADP a DET global ADJ scale. NOUN migrants NOUN and CCONJ others NOUN sent VERB about ADV $ SYM 689 NUM billion NUM in ADP global ADJ remittances NOUN in ADP 2018, NUM according VERB to ADP the DET world PROPN bank — PROPN money NOUN that PRON relatives NOUN and CCONJ friends NOUN back ADV home ADV depend VERB on ADP to PART survive. VERB but CCONJ as SCONJ millions NOUN of ADP migrant ADJ workers NOUN see VERB their PRON hours NOUN cut VERB or CCONJ lose VERB their PRON jobs NOUN because SCONJ of ADP the DET economic ADJ slowdown NOUN from ADP the DET pandemic, NOUN the DET world PROPN bank PROPN said VERB this DET week NOUN that SCONJ global ADJ remittances NOUN were AUX projected VERB to PART plummet VERB about ADV 20 NUM percent NOUN this DET year, NOUN in “ ADP the DET sharpest ADJ decline NOUN in ADP recent ADJ history. NOUN ”and CCONJ that DET could AUX have AUX far- ADV reaching VERB effects NOUN in ADP some DET developing NOUN and CCONJ poorer ADJ nations NOUN like SCONJ mexico, PROPN which PRON was AUX the DET third- ADV largest ADJ recipient NOUN of ADP remittances NOUN in ADP 2018 — NUM after ADP india PROPN and CCONJ china, PROPN according VERB to ADP the DET world PROPN bank — PROPN and CCONJ the DET largest ADJ recipient NOUN of ADP money NOUN sent VERB from ADP the DET united PROPN states.amid PROPN the DET u.s. PROPN economic ADJ slowdown NOUN in ADP recent ADJ weeks, NOUN millions NOUN of ADP undocumented ADJ mexicans PROPN in ADP the DET united PROPN states, PROPN like SCONJ other ADJ immigrant ADJ populations, NOUN have AUX been AUX left VERB vulnerable ADJ without ADP job NOUN security NOUN and CCONJ unemployment NOUN benefits.a PROPN major ADJ decrease NOUN in ADP remittances NOUN could AUX cause VERB not PART just ADV economic ADJ duress, NOUN but CCONJ also ADV political ADJ and CCONJ social ADJ tension, NOUN said VERB roy PROPN germano, PROPN who PRON teaches VERB international ADJ relations NOUN at ADP new PROPN york PROPN university. PROPN “i PROPN do AUX n’t PART think VERB governments NOUN want VERB to PART see VERB this DET money NOUN contract, NOUN because SCONJ it PRON functions VERB as SCONJ a DET sort NOUN of ADP de X facto X social ADJ welfare NOUN system,” NOUN said VERB mr. PROPN germano, PROPN the DET author NOUN of “ ADP outsourcing VERB welfare,” NOUN a DET book NOUN about ADP remittances. “ NOUN in ADP that DET way, NOUN they PRON take VERB pressure NOUN off ADP governments NOUN to PART provide VERB welfare NOUN assistance NOUN and CCONJ guarantee VERB a DET certain ADJ standard NOUN of ADP living. NOUN ”“composition NOUN vi,” PROPN an DET abstract ADJ painting NOUN by ADP the DET russian ADJ master NOUN wassily PROPN kandinsky, PROPN has AUX now ADV been AUX restaged VERB in ADP the DET messy ADJ room NOUN of ADP a DET connecticut ADJ teenager. NOUN his PRON mother, NOUN julia PROPN vasilenko, PROPN a DET piano NOUN teacher, NOUN arranged VERB cymbals, NOUN a DET guitar NOUN and CCONJ a DET toy NOUN boat NOUN among ADP the DET room NOUN ’s VERB contents NOUN to PART symbolize VERB kandinsky PROPN ’s PROPN musical ADJ and CCONJ marine ADJ motifs. NOUN a DET blue ADJ latex NOUN glove NOUN reminds VERB the DET viewer NOUN of ADP the DET present ADJ day. NOUN people NOUN sheltering VERB in ADP place NOUN are AUX seeking VERB new ADJ ways NOUN to ADP connection NOUN online, ADV and CCONJ amid ADP the DET pandemic PROPN ’s PROPN bleakness, NOUN some DET report VERB a DET surge NOUN in ADP creativity. NOUN maybe ADV this DET is AUX why ADV a DET facebook NOUN group NOUN featuring VERB lo- PROPN fi PROPN recreations NOUN of ADP famous ADJ paintings NOUN has AUX more ADJ than SCONJ half DET a DET million NUM members, NOUN just ADV a DET few ADJ weeks NOUN after ADP it PRON was AUX created. VERB the DET group — NOUN izoizolyacia, PROPN combining VERB the DET russian ADJ words NOUN for “ ADP visual ADJ arts” NOUN and “ CCONJ isolation” — NOUN was AUX started VERB in ADP moscow PROPN by ADP a DET project NOUN manager NOUN at ADP a DET tech NOUN company. NOUN its PRON predominant ADJ language NOUN is AUX russian, ADJ but CCONJ more ADJ than SCONJ a DET third NOUN of ADP its PRON members NOUN live VERB outside ADP russia.the PUNCT copying- NOUN artworks NOUN gag NOUN is AUX not PART new, ADJ and CCONJ several ADJ museums — NOUN including VERB the DET getty NOUN in ADP los PROPN angeles PROPN and CCONJ the DET rijksmuseum NOUN in ADP amsterdam — PROPN are AUX encouraging VERB homebound ADJ art NOUN fans NOUN to PART send VERB in ADP photos NOUN of ADP efforts NOUN to PART bring VERB their PRON favorite ADJ paintings NOUN to ADP life. NOUN but CCONJ in ADP terms NOUN of ADP facebook NOUN followers, NOUN at ADP least, ADJ izoizolyacia PROPN ’s PART audience NOUN appears VERB to PART be AUX the DET most ADV engaged.even ADJ as SCONJ wedding NOUN halls NOUN and CCONJ hotels NOUN have AUX shuttered, VERB honeymoons NOUN evaporated VERB and CCONJ curfews NOUN slammed VERB down, ADP the DET coronavirus NOUN has AUX not PART quelled VERB couples’ NOUN ardor NOUN in ADP cairo. PROPN and CCONJ like SCONJ many ADJ others NOUN across ADP the DET middle PROPN east, PROPN they PRON pushed VERB ahead ADV with ADP weddings NOUN this DET past ADJ week. NOUN in ADP egypt, PROPN some DET couples NOUN shrank VERB their PRON ambitions NOUN to ADP small ADJ family NOUN gatherings. NOUN others NOUN flouted VERB public ADJ health NOUN restrictions NOUN with ADP secret ADJ parties NOUN and CCONJ guerrilla NOUN photo NOUN shoots. NOUN their PRON haste NOUN stemmed VERB from ADP a DET desire NOUN to PART beat VERB the DET deadline NOUN of ADP ramadan, PROPN which PRON started VERB friday. PROPN the DET holy ADJ month NOUN is AUX a DET solemn ADJ period NOUN when ADV weddings NOUN are AUX rare.some NOUN countries NOUN are AUX adapting. VERB in ADP the DET united PROPN arab PROPN emirates, PROPN hurried ADJ couples NOUN can AUX now ADV obtain VERB wedding NOUN licenses NOUN online. ADV in ADP kuwait, PROPN marriage NOUN courts NOUN offer VERB services NOUN by ADP special ADJ appointment — NOUN though SCONJ divorces NOUN are AUX unavailable.in PUNCT saudi PROPN arabia, PROPN some DET couples NOUN have AUX skipped VERB the DET once- ADV ironclad ADJ tradition NOUN of ADP holding VERB a DET wedding NOUN celebration NOUN before ADP moving VERB in ADV together, ADV even ADV if SCONJ they PRON are AUX already ADV legally ADV wed.such ADJ scenes NOUN of ADP determination NOUN in ADP the DET middle NOUN of ADP a DET major ADJ health NOUN crisis NOUN stem NOUN from ADP a DET simple ADJ truth: NOUN marriage NOUN may AUX be AUX important ADJ everywhere, ADV but CCONJ in ADP the DET middle PROPN east PROPN it PRON often ADV can VERB not PART wait.in PUNCT most ADJ arab ADJ countries, NOUN marriage NOUN confers VERB independence, NOUN the DET right NOUN to PART live VERB together, ADV cash NOUN gifts, NOUN a DET culturally ADV approved VERB sex NOUN life NOUN and, CCONJ for ADP women, NOUN heightened VERB status NOUN in ADP societies NOUN still ADV heavily ADV tilted VERB in ADP favor NOUN of ADP men.with PROPN virus NOUN infections NOUN in ADP egypt PROPN at ADP the DET low ADJ end NOUN of ADP the DET curve, NOUN about ADV 3,900 NUM cases NOUN for ADP 100 NUM million NUM people, NOUN some DET wedding- NOUN goers NOUN seemed VERB to PART believe VERB they PRON were AUX invincible. ADJ “this PROPN pandemic NOUN ca VERB n’t PART touch VERB us,” PRON a DET reveler NOUN named VERB islam PROPN said VERB as SCONJ his PRON wedding NOUN party NOUN scrambled VERB to PART take VERB photos NOUN on ADP a DET cairo PROPN bridge NOUN at ADP a DET moment NOUN when ADV the DET police NOUN were AUX absent. ADJ the DET groom, NOUN in ADP a DET tuxedo NOUN and CCONJ sneakers, NOUN posed VERB with ADP the DET bride, NOUN in ADP a DET white ADJ dress. NOUN then ADV everyone PRON bundled VERB into ADP three NUM cars NOUN and CCONJ took VERB off.president PROPN trump PROPN ’s PART daily ADJ news NOUN briefings NOUN on ADP the DET coronavirus PROPN outbreak NOUN are AUX inflicting VERB grave ADJ damage NOUN on ADP his PRON political ADJ standing, NOUN republicans PROPN believe, VERB and CCONJ his PRON recent ADJ remarks NOUN about ADP combating VERB the DET virus NOUN with ADP sunlight NOUN and CCONJ disinfectant NOUN were AUX a DET breaking ADJ point NOUN for ADP a DET number NOUN of ADP senior ADJ party NOUN officials. NOUN new ADJ surveys NOUN show VERB mr. PROPN trump PROPN trailing VERB significantly ADV in ADP battleground NOUN states NOUN like SCONJ michigan PROPN and CCONJ pennsylvania, PROPN and CCONJ he PRON is AUX even ADV narrowly ADV behind ADV in ADP must- AUX win VERB florida. PROPN mr. PROPN trump PROPN ’s PROPN suggestion NOUN that SCONJ an DET injection NOUN of ADP disinfectant NOUN could AUX help VERB combat VERB the DET coronavirus NOUN prompted VERB warnings NOUN on ADP friday PROPN from ADP health NOUN officials NOUN across ADP the DET country, NOUN as ADV well ADV as SCONJ the DET makers NOUN of ADP clorox NOUN and CCONJ lysol NOUN and CCONJ several ADJ fox PROPN news PROPN personalities.the PROPN white PROPN house PROPN spent VERB much ADJ of ADP friday PROPN trying VERB to PART walk VERB back ADV mr. PROPN trump PROPN ’s PROPN remarks, NOUN which PRON he PRON made VERB at ADP thursday PROPN ’s PROPN press NOUN briefing. NOUN vice PROPN president PROPN mike PROPN pence, PROPN the DET head NOUN of ADP the DET white PROPN house PROPN coronavirus PROPN task PROPN force, NOUN abruptly ADV ended VERB friday PROPN ’s PART daily ADJ briefing PROPN shortly ADV after ADP it PRON began, VERB and CCONJ the DET president NOUN took VERB no DET questions. NOUN now, ADV mr. PROPN trump PROPN ’s PROPN advisers NOUN are AUX encouraging VERB him PRON to PART skip VERB the DET daily ADJ briefings NOUN or CCONJ field NOUN fewer ADJ questions NOUN from ADP the DET reporters, NOUN and CCONJ mr. PROPN trump PROPN himself PRON said VERB on ADP twitter NOUN on ADP saturday PROPN that SCONJ they PRON were AUX not PART in ADP his PRON best ADJ interest. NOUN “what INTJ is AUX the DET purpose NOUN of ADP having VERB white PROPN house PROPN news NOUN conferences NOUN when ADV the DET lamestream NOUN media NOUN asks VERB nothing PRON but SCONJ hostile ADJ questions, & NOUN then ADV refuses VERB to PART report VERB the DET truth NOUN or CCONJ facts NOUN accurately,” ADV mr. PROPN trump PROPN said VERB on ADP twitter. “ NOUN they PRON get VERB record NOUN ratings, & NOUN the DET american ADJ people NOUN get VERB nothing PRON but SCONJ fake ADJ news. NOUN not PART worth ADJ the DET time & NOUN effort!”here PROPN ’s NOUN what PRON else ADV is AUX happening VERB in ADP the DET u.s.: PROPN as SCONJ states NOUN begin VERB allowing VERB businesses NOUN to PART reopen, VERB there PRON is AUX uncertainty NOUN around ADP how ADV a DET gradual ADJ restart NOUN to ADP the DET economy NOUN would AUX work VERB because SCONJ of ADP interconnected VERB supply NOUN chains. NOUN and CCONJ if SCONJ states NOUN reopen VERB their PRON economies NOUN too ADV quickly ADV that DET could AUX lead VERB to ADP a DET renewed VERB outbreak.governors NOUN deciding VERB about ADP opening VERB their PRON economies NOUN continue VERB to PART be AUX hampered VERB by ADP a DET shortage NOUN of ADP testing NOUN capacity, NOUN leaving VERB them PRON without ADP the DET information NOUN that PRON public ADJ health NOUN experts NOUN say VERB is AUX needed VERB to PART track VERB outbreaks NOUN and CCONJ contain VERB them. PRON testing NOUN capacity NOUN remains VERB nowhere ADV near SCONJ the DET level NOUN mr. PROPN trump PROPN suggests VERB it PRON is, VERB and CCONJ governors, NOUN public ADJ health NOUN officials NOUN and CCONJ hospital NOUN executives NOUN say VERB they PRON are AUX still ADV scrambling — VERB and CCONJ competing VERB with ADP one NUM another — DET to PART procure VERB the DET equipment NOUN they PRON need. VERB the DET u.s. PROPN conducted VERB about ADV 1.2 NUM million NUM tests NOUN in ADP a DET week, NOUN but CCONJ experts NOUN say VERB that DET is AUX still ADV not PART enough.two ADJ antimalarial ADJ drugs — NOUN chloroquine PROPN and CCONJ hydroxychloroquine — PROPN promoted VERB by ADP mr. PROPN trump PROPN as SCONJ effective ADJ against ADP the DET coronavirus NOUN were AUX being AUX prescribed VERB at ADP more ADJ than SCONJ six NUM times NOUN the DET normal ADJ rate NOUN during ADP the DET second ADJ week NOUN of ADP april, PROPN a DET data NOUN analysis NOUN by ADP the DET new PROPN york PROPN times PROPN shows. VERB on ADP friday, PROPN the DET food NOUN and CCONJ drug PROPN administration NOUN warned VERB against ADP using VERB the DET drugs NOUN outside ADP a DET hospital NOUN setting NOUN or CCONJ clinical ADJ trial NOUN because SCONJ they PRON could AUX lead VERB to ADP serious ADJ heart NOUN rhythm NOUN problems NOUN in ADP some DET coronavirus PROPN patients.john PROPN houghton, PROPN a DET climate NOUN scientist NOUN and CCONJ leading VERB figure NOUN in ADP the DET united PROPN nations PROPN panel NOUN that PRON brought VERB the DET threat NOUN of ADP climate NOUN change NOUN to ADP the DET world NOUN ’s PROPN attention NOUN and CCONJ received VERB a DET nobel PROPN prize, NOUN died VERB on ADP april PROPN 15 NUM in ADP dolgellau, PROPN wales. PROPN he PRON was AUX 88.the PROPN cause NOUN was AUX complications NOUN of ADP the DET novel ADJ coronavirus, NOUN according VERB to ADP his PRON granddaughter NOUN hannah PROPN malcolm, PROPN who PRON announced VERB the DET death, NOUN at ADP a DET hospital, NOUN on ADP twitter.a NUM key ADJ participant NOUN in ADP the DET united PROPN nations PROPN intergovernmental ADJ panel NOUN on ADP climate NOUN change, NOUN dr. PROPN houghton PROPN was AUX the DET lead ADJ editor NOUN of ADP the DET organization NOUN ’s PART first ADJ three NUM reports, NOUN issued VERB in ADP 1990, NUM 1995 NUM and CCONJ 2001. NUM with ADP each DET report, NOUN the DET evidence NOUN underpinning VERB global ADJ warming NOUN and CCONJ the DET role NOUN humans NOUN play VERB in ADP causing VERB it PRON grew VERB more ADV ineluctable, ADJ and CCONJ the DET calls NOUN for ADP international ADJ action NOUN became VERB more ADV pressing. ADJ the DET group NOUN received VERB the DET 2007 NUM nobel PROPN peace PROPN prize PROPN jointly ADV with ADP al PROPN gore, PROPN the DET former ADJ vice NOUN president NOUN and CCONJ climate NOUN campaigner.speaking VERB about ADP climate NOUN change NOUN in ADP 1994, NUM dr. PROPN houghton PROPN said VERB that SCONJ delay NOUN served VERB no DET one. “ NOUN we PRON should AUX start VERB to PART do AUX what PRON we PRON can AUX do AUX now ADV and CCONJ also ADV begin VERB to PART plan VERB to PART do AUX more,” ADJ he PRON said, VERB and “ CCONJ not PART wait VERB 10 NUM or CCONJ 20 NUM years NOUN till SCONJ things NOUN are AUX more ADV clear.” ADJ read VERB the DET full ADJ obituary.with NOUN a DET population NOUN of ADP about ADV one NUM million NUM people NOUN and CCONJ an DET area NOUN of ADP 9,000 NUM square ADJ miles, NOUN djibouti PROPN is AUX one NUM of ADP africa PROPN ’s PROPN smallest ADJ countries. NOUN but CCONJ this DET week NOUN the DET horn NOUN of ADP africa PROPN nation NOUN was AUX listed VERB as SCONJ having VERB the DET highest ADJ prevalence NOUN of ADP coronavirus PROPN cases, NOUN 986, NUM in ADP africa.the DET figure NOUN reflects VERB mass ADJ coronavirus NOUN testing NOUN in ADP the DET country. NOUN but CCONJ officials NOUN have AUX also ADV spoken VERB of ADP people NOUN not PART adhering VERB to ADP social ADJ distancing NOUN and CCONJ hygiene NOUN rules.the PROPN state NOUN has AUX shut VERB its PRON borders, NOUN suspended VERB international ADJ flights, NOUN and CCONJ closed VERB schools NOUN and CCONJ all DET places NOUN of ADP worship. NOUN “what INTJ we PRON are AUX asking VERB of ADP you PRON is AUX to PART save VERB yourselves, NOUN to PART save VERB your PRON siblings, NOUN your PRON mothers NOUN and CCONJ fathers NOUN and CCONJ the DET old ADJ people,” NOUN president PROPN ismail PROPN omar PROPN guelleh PROPN said VERB in ADP a DET recent ADJ televised VERB speech. “ NOUN i PRON ask VERB you PRON to PART stay VERB at ADP home. NOUN ”djibouti, PROPN at ADP the DET southern ADJ entrance NOUN to ADP the DET red PROPN sea, PROPN has AUX taken VERB advantage NOUN of ADP its PRON location NOUN at ADP a DET busy ADJ shipping NOUN route NOUN and CCONJ its PRON relative ADJ stability NOUN in ADP a DET volatile ADJ region NOUN to PART increase VERB its PRON geostrategic ADJ relevance. NOUN it PRON is AUX home NOUN to ADP several ADJ foreign ADJ military ADJ bases, NOUN including VERB one NUM of ADP the DET united PROPN states’ PROPN largest ADJ foreign ADJ installations NOUN and CCONJ china PROPN ’s PROPN first ADJ overseas ADJ military ADJ base. NOUN as SCONJ the DET coronavirus NOUN has AUX spread, VERB these DET military ADJ installations NOUN have AUX heightened VERB their PRON safety NOUN measures.on PROPN april PROPN 23, NUM maj. PROPN gen. PROPN michael PROPN d. PROPN turello, PROPN commander NOUN of ADP the DET combined ADJ joint ADJ task NOUN force NOUN horn PROPN of ADP africa, PROPN declared VERB a DET public ADJ health NOUN emergency NOUN for ADP the DET u.s. PROPN personnel NOUN under ADP his PRON authority NOUN in ADP djibouti. “ PROPN combating VERB covid-19 PROPN is AUX my PRON top ADJ priority,” NOUN he PRON said VERB in ADP a DET statement, NOUN referring VERB to ADP the DET disease NOUN caused VERB by ADP the DET virus. “ NOUN by ADP declaring VERB a DET public ADJ health NOUN emergency, NOUN it PRON keeps VERB our PRON forces, NOUN and CCONJ those DET of ADP our PRON host NOUN nation NOUN partner, NOUN as SCONJ healthy ADJ and CCONJ as ADV safe ADJ as SCONJ possible. ADJ ”a PROPN park PROPN in ADP okinawa PROPN city, PROPN japan, PROPN has AUX mowed VERB down ADP sprawling VERB lily ADJ fields NOUN that PRON usually ADV draw VERB thousands NOUN of ADP people, NOUN in ADP an DET effort NOUN to PART prevent VERB visitors NOUN from ADP gathering VERB and CCONJ spreading VERB the DET coronavirus.fears NOUN of ADP the DET virus NOUN and CCONJ a DET nationwide ADJ state NOUN of ADP emergency NOUN declared VERB this DET month NOUN did AUX not PART deter VERB people NOUN from ADP visiting VERB the DET okinawa PROPN comprehensive ADJ athletic ADJ park, NOUN where ADV its PRON lilies NOUN were AUX approaching VERB full ADJ bloom. NOUN in ADP response, NOUN the DET park NOUN clipped VERB 10,000 NUM of ADP its PRON 16,000 NUM lilies NOUN on ADP friday. PROPN “our PRON staff NOUN spent VERB a DET whole ADJ year NOUN growing VERB them,” PRON seiji PROPN fukushima, PROPN the DET park NOUN ’s PROPN director, NOUN said VERB on ADP saturday. “ PROPN they PRON were AUX crying VERB as SCONJ they PRON cut VERB them PRON off. ADP ”despite PROPN the DET emergency NOUN declarations NOUN this DET month, NOUN many ADJ residents NOUN across ADP the DET country NOUN still ADV visited VERB beaches, NOUN parks NOUN and CCONJ restaurants, NOUN raising VERB concerns NOUN about ADP its PRON measures NOUN to PART curb VERB the DET outbreak. NOUN mr. PROPN fukushima PROPN said VERB many ADJ service NOUN members NOUN of ADP the DET u.s. PROPN military ADJ bases NOUN in ADP okinawa PROPN prefecture NOUN had AUX visited VERB or CCONJ jogged VERB in ADP the DET park NOUN despite SCONJ social ADJ distancing NOUN rules, NOUN and CCONJ residents NOUN had AUX complained VERB that SCONJ many ADJ of ADP them PRON did AUX not PART wear VERB masks.the X flowers NOUN are AUX usually ADV harvested VERB in ADP mid- NOUN may, PROPN when ADV bulbs NOUN are AUX collected VERB and CCONJ stored VERB for ADP planting VERB later. ADV the DET park NOUN said VERB that SCONJ the DET cropped VERB lilies NOUN had AUX been AUX distributed VERB to ADP people NOUN and CCONJ that SCONJ it PRON would AUX use VERB the DET opportunity NOUN to PART improve VERB its PRON soil NOUN this DET year.as PROPN of ADP saturday, PROPN japan PROPN had AUX more ADJ than SCONJ 13,500 NUM confirmed VERB coronavirus NOUN cases NOUN and CCONJ 341 NUM deaths.in NOUN israel, PROPN where ADV nearly ADV everyone PRON has AUX someone PRON to PART mourn VERB from ADP wars NOUN and CCONJ continuing VERB conflicts, NOUN memorial ADJ day — NOUN   SPACE which PRON is AUX observed VERB from ADP monday PROPN at ADP sundown NOUN until ADP tuesday PROPN at ADP sundown — NOUN ordinarily ADV draws VERB hundreds NOUN of ADP thousands NOUN to ADP national ADJ cemeteries. NOUN but CCONJ fears NOUN that SCONJ crowds NOUN could AUX spread VERB the DET coronavirus NOUN have AUX prompted VERB the DET government NOUN to PART plead VERB with ADP people NOUN to PART stay VERB away. ADV “it PROPN causes VERB me PRON immense ADJ pain NOUN that PRON i PRON wo VERB n’t PART be AUX with ADP my PRON brother NOUN on ADP memorial PROPN day, PROPN but CCONJ i PRON know VERB the DET right ADJ thing NOUN is AUX to PART stay VERB home,” ADV said VERB frida PROPN shniderman, NOUN 72, NUM referring VERB to ADP her PRON sibling, NOUN meir PROPN rozenchtroch, PROPN who PRON was AUX killed VERB in ADP the DET wake NOUN of ADP a DET conflict NOUN between ADP israel PROPN and CCONJ syria PROPN in ADP 1974. “ NUM cemeteries NOUN get VERB very ADV crowded ADJ every DET year. NOUN it PRON ’s VERB simply ADV too ADV risky ADJ to PART go VERB now. ADV ”defense PROPN minister PROPN naftali PROPN bennett PROPN said VERB at ADP a DET news NOUN conference NOUN that SCONJ observing VERB memorial ADJ day NOUN as SCONJ in ADP past ADJ years NOUN would AUX create “ VERB a DET coronavirus NOUN ticking VERB time NOUN bomb.” NOUN about ADP one NUM and CCONJ a DET half NOUN million NUM israelis PROPN usually ADV visit VERB burial NOUN grounds NOUN across ADP the DET country NOUN during ADP the DET holiday, NOUN he PRON said.some VERB israelis, PROPN however, ADV have AUX vowed VERB to PART go VERB to ADP the DET cemeteries, NOUN arguing VERB that SCONJ they PRON would AUX not PART threaten VERB public ADJ health NOUN as ADV long ADV as SCONJ they PRON maintain VERB social ADJ distancing NOUN measures. NOUN “my ADJ family NOUN and CCONJ i PRON will AUX go,” VERB said VERB moshe PROPN muskal, PROPN 64, NUM whose PRON son NOUN rafanel PROPN was AUX killed VERB in ADP conflict NOUN between ADP israel PROPN and CCONJ the DET lebanese ADJ militant NOUN group NOUN hezbollah PROPN in ADP 2006. “ NUM this DET day NOUN is AUX so ADV important ADJ to ADP us. PRON ”while ADP the DET government NOUN decided VERB that SCONJ it PRON would AUX not PART permit VERB israelis PROPN to PART go VERB to ADP cemeteries, NOUN the DET police NOUN will AUX not PART use VERB force NOUN to PART stop VERB them, PRON officials NOUN have AUX said.israel PROPN had AUX recorded VERB more ADJ than SCONJ 15,000 NUM cases NOUN of ADP the DET virus NOUN as SCONJ of ADP saturday, PROPN and CCONJ nearly ADV 200 NUM deaths.vanuatu, NOUN a DET pacific ADJ island NOUN nation NOUN of ADP 300,000 NUM people, NOUN gave VERB sports NOUN fans NOUN worldwide ADV what PRON they PRON ’d VERB been VERB craving VERB on ADP saturday: PROPN something PRON to PART watch, VERB live, VERB with ADP the DET outcome NOUN unknown.cricket PROPN may AUX not PART be AUX everyone PRON ’s PROPN cup NOUN of ADP tea, NOUN but CCONJ the DET vanuatu PROPN cricket PROPN association PROPN livestreamed VERB its PRON women NOUN ’s PART super PROPN league PROPN final, ADJ inviting VERB sports NOUN fans NOUN everywhere ADV to PART take VERB a DET break NOUN from ADP the DET recorded VERB footage NOUN that PRON many ADJ have AUX had VERB to PART settle VERB for ADP during ADP the DET pandemic. NOUN “we PROPN thought VERB it PRON ’s VERB our PRON duty NOUN to PART provide VERB the DET world NOUN with ADP some DET live ADJ sport,” NOUN said VERB shane PROPN deitz, NOUN the DET chief ADJ executive NOUN of ADP the DET vanuatu PROPN cricket PROPN association PROPN and CCONJ a DET former ADJ player NOUN for ADP the DET australian ADJ national ADJ team. “ NOUN it PRON ’s VERB one NUM of ADP the DET only ADJ live ADJ sports NOUN around ADP the DET world NOUN at ADP the DET moment. NOUN we PRON can AUX showcase VERB a DET bit NOUN of ADP cricket NOUN for ADP everyone PRON who PRON is AUX in ADP lockdown. PROPN ”vanuatu, PROPN like SCONJ many ADJ other ADJ small ADJ pacific ADJ nations, NOUN has AUX managed VERB to PART keep VERB the DET coronavirus NOUN from ADP spreading, VERB or CCONJ even ADV arriving, VERB if SCONJ official ADJ figures NOUN are AUX correct. ADJ the DET country NOUN went VERB into ADP lockdown NOUN late ADV last ADJ month NOUN as SCONJ a DET precaution. NOUN after ADP it PRON was AUX hit VERB by ADP a DET major ADJ cyclone NOUN on ADP april PROPN 6, NUM the DET lockdown NOUN was AUX lifted VERB so SCONJ that SCONJ people NOUN could AUX recover VERB and CCONJ rebuild.during VERB the DET match NOUN on ADP saturday, PROPN small ADJ crowds NOUN of ADP fans NOUN could AUX be AUX seen VERB surrounding VERB the DET pitch, NOUN standing VERB or CCONJ sitting VERB a DET few ADJ feet NOUN apart, ADV clearly ADV enjoying VERB the DET sight. NOUN comments NOUN on ADP the DET cricket PROPN association PROPN ’s PROPN facebook PROPN page, NOUN where ADV the DET livestream NOUN was AUX shown, VERB thanked VERB vanuatu ADV for ADP sharing.president ADJ trump NOUN has AUX promised VERB in ADP a DET tweet NOUN to PART provide VERB ventilators NOUN to ADP indonesia, PROPN where ADV a DET rising VERB number NOUN of ADP coronavirus PROPN cases NOUN threatens VERB to PART overwhelm VERB the DET country NOUN ’s PART poorly ADV equipped VERB and CCONJ understaffed ADJ health NOUN care NOUN system. NOUN “just PROPN spoke VERB to ADP my PRON friend, NOUN president PROPN joko PROPN widodo PROPN of ADP the DET republic PROPN of ADP indonesia,” PROPN mr. PROPN trump PROPN wrote VERB on ADP friday. “ PROPN asking VERB for ADP ventilators, NOUN which PRON we PRON will AUX provide. VERB great ADJ cooperation NOUN between ADP us!”in PROPN reply, PROPN mr. PROPN joko PROPN ’s PROPN spokesman, NOUN fadjroel PROPN rachman, PROPN tweeted VERB on ADP saturday, “ PROPN thank VERB you PRON very ADV much ADV for ADP great ADJ cooperation NOUN between ADP the DET usa PROPN and CCONJ the DET republic PROPN of ADP indonesia PROPN mr. PROPN president.” PROPN indonesia, PROPN with ADP a DET population NOUN of ADP 270 NUM million, NUM is AUX the DET world NOUN ’s PART fourth ADV largest ADJ country NOUN but CCONJ has AUX only ADV about ADV 8,400 NUM ventilators NOUN to PART help VERB patients NOUN with ADP the DET coronavirus, NOUN which PRON has AUX spread VERB to ADP all DET 34 NUM provinces.indonesia PROPN has AUX reported VERB 720 NUM deaths NOUN from ADP the DET coronavirus, NOUN the DET second ADJ highest ADJ toll NOUN in ADP east PROPN asia PROPN after ADP china. PROPN but CCONJ some DET officials NOUN say VERB many ADJ more ADJ deaths NOUN have AUX gone VERB unreported.mr. X trump PROPN also ADV said VERB the DET united PROPN states PROPN would AUX send VERB ventilators NOUN to ADP three NUM latin ADJ american ADJ countries — NOUN ecuador, PROPN el PROPN salvador PROPN and CCONJ honduras — PROPN that PRON are AUX reeling VERB from ADP the DET pandemic. NOUN he PRON did AUX not PART say VERB how ADV many ADJ ventilators NOUN would AUX be AUX sent VERB to ADP any DET of ADP the DET four NUM countries NOUN or CCONJ when ADV they PRON would AUX arrive.ecuador VERB ’s PROPN largest ADJ city, NOUN guayaquil, PROPN has AUX been AUX especially ADV hard ADV hit. VERB hospitals NOUN and CCONJ clinics NOUN have AUX been AUX so ADV overwhelmed ADJ that SCONJ they PRON have AUX been AUX unable ADJ to PART treat VERB some DET patients. NOUN bodies NOUN have AUX been AUX found VERB abandoned VERB on ADP sidewalks NOUN and CCONJ slumped VERB in ADP wheelchairs.the DET honduran PROPN president, PROPN juan PROPN orlando PROPN hernández, PROPN also ADV spoke VERB with ADP mr. PROPN trump PROPN and CCONJ requested VERB help NOUN with ADP ventilators NOUN and CCONJ testing. NOUN he PRON said VERB he PRON had AUX also ADV asked VERB for ADP assistance NOUN in ADP securing VERB debt NOUN relief NOUN for ADP poor ADJ countries NOUN and CCONJ financial ADJ aid NOUN from ADP international ADJ lenders.in NOUN a DET tweet NOUN on ADP friday PROPN evening NOUN about ADP his PRON conversation NOUN with ADP the DET honduran PROPN president, PROPN mr. PROPN trump PROPN said, “ VERB we PRON work VERB closely ADV together ADV on ADP the DET southern ADJ border. NOUN will AUX be AUX helping VERB him PRON with ADP his PRON request NOUN for ADP ventilators NOUN and CCONJ testing. NOUN ”reporting PROPN was AUX contributed VERB by ADP lara PROPN jakes, PROPN anton PROPN troianovski, PROPN andrew PROPN e. PROPN kramer, PROPN kai PROPN schultz, PROPN dera PROPN menra PROPN sijabat, PROPN vikas PROPN bajaj, PROPN richard PROPN c. PROPN paddock, PROPN tiffany PROPN may, PROPN mike PROPN ives, PROPN kirk PROPN semple, PROPN elian PROPN peltier, PROPN john PROPN schwartz, PROPN caitlin PROPN dickerson, PROPN liz PROPN alderman, PROPN tess NOUN felder, NOUN elaine PROPN yu, PROPN hisako PROPN ueno, PROPN adam PROPN rasgon, PROPN adam PROPN nossiter, PROPN evan PROPN easterling, PROPN andrew PROPN lavallee, PROPN joshua PROPN barone, PROPN damien PROPN cave, PROPN jin PROPN wu, PROPN declan PROPN walsh, PROPN maggie PROPN haberman, PROPN jonathan PROPN martin, PROPN alexandra PROPN stevenson, PROPN raphael PROPN minder, PROPN abdi PROPN latif PROPN dahir, PROPN nicholas PROPN kulish, PROPN ernesto PROPN londoño, PROPN letícia PROPN casado, PROPN manuela PROPN andreoni PROPN and CCONJ david PROPN gelles. PROPN wang PROPN yiwei PROPN contributed VERB research.updated ADJ april PROPN 11, NUM 2020this NUM is AUX a DET difficult ADJ question, NOUN because SCONJ a DET lot NOUN depends VERB on ADP how ADV well ADV the DET virus NOUN is AUX contained. VERB a DET better ADJ question NOUN might AUX be: “ VERB how ADV will AUX we PRON know VERB when ADV to PART reopen VERB the DET country?” NOUN in ADP an DET american PROPN enterprise PROPN institute PROPN report, PROPN scott PROPN gottlieb, PROPN caitlin PROPN rivers, PROPN mark PROPN b. PROPN mcclellan, PROPN lauren PROPN silvis PROPN and CCONJ crystal PROPN watson PROPN staked VERB out ADP four NUM goal NOUN posts NOUN for ADP recovery: NOUN hospitals NOUN in ADP the DET state NOUN must AUX be AUX able ADJ to PART safely ADV treat VERB all DET patients NOUN requiring VERB hospitalization, NOUN without ADP resorting VERB to ADP crisis NOUN standards NOUN of ADP care; NOUN the DET state NOUN needs VERB to PART be AUX able ADJ to PART at ADP least ADJ test NOUN everyone PRON who PRON has AUX symptoms; NOUN the DET state NOUN is AUX able ADJ to PART conduct VERB monitoring NOUN of ADP confirmed VERB cases NOUN and CCONJ contacts; NOUN and CCONJ there PRON must AUX be AUX a DET sustained ADJ reduction NOUN in ADP cases NOUN for ADP at ADV least ADJ 14 NUM days.the DET times NOUN neediest NOUN cases NOUN fund NOUN has AUX started VERB a DET special ADJ campaign NOUN to PART help VERB those DET who PRON have AUX been AUX affected, VERB which PRON accepts VERB donations NOUN here. ADV charity NOUN navigator, NOUN which PRON evaluates VERB charities NOUN using VERB a DET numbers- NOUN based VERB system, NOUN has AUX a DET running ADJ list NOUN of ADP nonprofits NOUN working VERB in ADP communities NOUN affected VERB by ADP the DET outbreak. NOUN you PRON can AUX give VERB blood NOUN through ADP the DET american PROPN red PROPN cross, PROPN and CCONJ world PROPN central ADJ kitchen PROPN has AUX stepped VERB in ADP to PART distribute VERB meals NOUN in ADP major ADJ cities. NOUN more ADJ than SCONJ 30,000 NUM coronavirus- NOUN related VERB gofundme NOUN fund- NOUN raisers NOUN have AUX started VERB in ADP the DET past ADJ few ADJ weeks. ( NOUN the DET sheer ADJ number NOUN of ADP fund- NOUN raisers NOUN means VERB more ADJ of ADP them PRON are AUX likely ADJ to PART fail VERB to PART meet VERB their PRON goal, NOUN though.)if PROPN you PRON ’ve VERB been AUX exposed VERB to ADP the DET coronavirus NOUN or CCONJ think VERB you PRON have, VERB and CCONJ have AUX a DET fever NOUN or CCONJ symptoms NOUN like SCONJ a DET cough NOUN or CCONJ difficulty NOUN breathing, NOUN call VERB a DET doctor. NOUN they PRON should AUX give VERB you PRON advice NOUN on ADP whether SCONJ you PRON should AUX be AUX tested, VERB how ADV to PART get AUX tested, VERB and CCONJ how ADV to PART seek VERB medical ADJ treatment NOUN without ADP potentially ADV infecting VERB or CCONJ exposing VERB others.the PUNCT c.d.c. PROPN has AUX recommended VERB that SCONJ all DET americans PROPN wear VERB cloth NOUN masks NOUN if SCONJ they PRON go VERB out ADP in ADP public. NOUN this DET is AUX a DET shift NOUN in ADP federal ADJ guidance NOUN reflecting VERB new ADJ concerns NOUN that SCONJ the DET coronavirus NOUN is AUX being AUX spread VERB by ADP infected ADJ people NOUN who PRON have AUX no DET symptoms. NOUN until ADP now, ADV the DET c.d.c., PROPN like SCONJ the DET w.h.o., PROPN has AUX advised VERB that SCONJ ordinary ADJ people NOUN do AUX n’t PART need VERB to PART wear VERB masks NOUN unless SCONJ they PRON are AUX sick ADJ and CCONJ coughing. VERB part NOUN of ADP the DET reason NOUN was AUX to PART preserve VERB medical- ADJ grade NOUN masks NOUN for ADP health NOUN care NOUN workers NOUN who PRON desperately ADV need VERB them PRON at ADP a DET time NOUN when ADV they PRON are AUX in ADP continuously ADV short ADJ supply. NOUN masks NOUN do AUX n’t PART replace VERB hand NOUN washing NOUN and CCONJ social ADJ distancing.if PROPN you PRON ’re VERB sick ADJ and CCONJ you PRON think VERB you PRON ’ve VERB been AUX exposed VERB to ADP the DET new ADJ coronavirus, NOUN the DET c.d.c. PROPN recommends VERB that SCONJ you PRON call VERB your PRON healthcare NOUN provider NOUN and CCONJ explain VERB your PRON symptoms NOUN and CCONJ fears. NOUN they PRON will AUX decide VERB if SCONJ you PRON need VERB to PART be AUX tested. VERB keep VERB in ADP mind NOUN that SCONJ there PRON ’s VERB a DET chance — NOUN because SCONJ of ADP a DET lack NOUN of ADP testing NOUN kits NOUN or CCONJ because SCONJ you PRON ’re VERB asymptomatic, ADJ for ADP instance — NOUN you PRON wo VERB n’t PART be AUX able ADJ to PART get AUX tested.it PROPN seems VERB to PART spread VERB very ADV easily ADV from ADP person NOUN to ADP person, NOUN especially ADV in ADP homes, NOUN hospitals NOUN and CCONJ other ADJ confined ADJ spaces. NOUN the DET pathogen NOUN can AUX be AUX carried VERB on ADP tiny ADJ respiratory ADJ droplets NOUN that PRON fall VERB as SCONJ they PRON are AUX coughed VERB or CCONJ sneezed VERB out. ADP it PRON may AUX also ADV be AUX transmitted VERB when ADV we PRON touch VERB a DET contaminated VERB surface NOUN and CCONJ then ADV touch VERB our PRON face.no. PROPN clinical ADJ trials NOUN are AUX underway ADJ in ADP the DET united PROPN states, PROPN china PROPN and CCONJ europe. PROPN but CCONJ american ADJ officials NOUN and CCONJ pharmaceutical ADJ executives NOUN have AUX said VERB that SCONJ a DET vaccine NOUN remains VERB at ADP least ADJ 12 NUM to PART 18 NUM months NOUN away.unlike ADP the DET flu, NOUN there PRON is AUX no DET known VERB treatment NOUN or CCONJ vaccine, NOUN and CCONJ little ADJ is AUX known VERB about ADP this DET particular ADJ virus NOUN so ADV far. ADV it PRON seems VERB to PART be AUX more ADV lethal ADJ than SCONJ the DET flu, NOUN but CCONJ the DET numbers NOUN are AUX still ADV uncertain. ADJ and CCONJ it PRON hits VERB the DET elderly ADJ and CCONJ those DET with ADP underlying ADJ conditions — NOUN not PART just ADV those DET with ADP respiratory ADJ diseases — NOUN particularly ADV hard.if PROPN the DET family NOUN member NOUN does AUX n’t PART need VERB hospitalization NOUN and CCONJ can AUX be AUX cared VERB for ADP at ADP home, NOUN you PRON should AUX help VERB him PRON or CCONJ her PRON with ADP basic ADJ needs NOUN and CCONJ monitor VERB the DET symptoms, NOUN while SCONJ also ADV keeping VERB as ADV much ADJ distance NOUN as SCONJ possible, ADJ according VERB to ADP guidelines NOUN issued VERB by ADP the DET c.d.c. PROPN if SCONJ there PRON ’s PROPN space, NOUN the DET sick ADJ family NOUN member NOUN should AUX stay VERB in ADP a DET separate ADJ room NOUN and CCONJ use VERB a DET separate ADJ bathroom. NOUN if SCONJ masks NOUN are AUX available, ADJ both CCONJ the DET sick ADJ person NOUN and CCONJ the DET caregiver NOUN should AUX wear VERB them PRON when ADV the DET caregiver NOUN enters VERB the DET room. NOUN make VERB sure ADJ not PART to PART share VERB any DET dishes NOUN or CCONJ other ADJ household NOUN items NOUN and CCONJ to PART regularly ADV clean VERB surfaces NOUN like SCONJ counters, NOUN doorknobs, NOUN toilets NOUN and CCONJ tables. NOUN do AUX n’t PART forget VERB to PART wash VERB your PRON hands NOUN frequently.plan PROPN two NUM weeks NOUN of ADP meals NOUN if SCONJ possible. ADJ but CCONJ people NOUN should AUX not PART hoard VERB food NOUN or CCONJ supplies. NOUN despite SCONJ the DET empty ADJ shelves, NOUN the DET supply NOUN chain NOUN remains VERB strong. ADJ and CCONJ remember VERB to PART wipe VERB the DET handle NOUN of ADP the DET grocery NOUN cart NOUN with ADP a DET disinfecting NOUN wipe NOUN and CCONJ wash VERB your PRON hands NOUN as ADV soon ADV as SCONJ you PRON get VERB home.yes, PROPN but CCONJ make VERB sure ADJ you PRON keep VERB six NUM feet NOUN of ADP distance NOUN between ADP you PRON and CCONJ people NOUN who PRON do AUX n’t PART live VERB in ADP your PRON home. NOUN even ADV if SCONJ you PRON just ADV hang VERB out ADP in ADP a DET park, NOUN rather ADV than SCONJ go VERB for ADP a DET jog NOUN or CCONJ a DET walk, NOUN getting VERB some DET fresh ADJ air, NOUN and CCONJ hopefully ADV sunshine, NOUN is AUX a DET good ADJ idea.that NOUN ’s VERB not PART a DET good ADJ idea. NOUN even ADV if SCONJ you PRON ’re VERB retired, ADJ having VERB a DET balanced ADJ portfolio NOUN of ADP stocks NOUN and CCONJ bonds NOUN so SCONJ that SCONJ your PRON money NOUN keeps VERB up ADP with ADP inflation, NOUN or CCONJ even ADV grows, VERB makes VERB sense. NOUN but CCONJ retirees NOUN may AUX want VERB to PART think VERB about ADP having VERB enough ADJ cash NOUN set VERB aside ADV for ADP a DET year NOUN ’s PART worth NOUN of ADP living NOUN expenses NOUN and CCONJ big ADJ payments NOUN needed VERB over ADP the DET next ADJ five NUM years.watching VERB your PRON balance NOUN go VERB up ADV and CCONJ down ADV can AUX be AUX scary. ADJ you PRON may AUX be AUX wondering VERB if SCONJ you PRON should AUX decrease VERB your PRON contributions — NOUN do AUX n’t! ADV if SCONJ your PRON employer NOUN matches VERB any DET part NOUN of ADP your PRON contributions, NOUN make VERB sure ADJ you PRON ’re VERB at ADP least ADJ saving VERB as ADV much ADV as SCONJ you PRON can AUX to PART get AUX that “ ADP free ADJ money. NOUN ”advertisement PROPN nsubj advcl agent det npadvmod amod pobj aux det dobj compound nsubj nsubj aux relcl prt det dobj ccomp det amod compound dobj det appos prep poss pobj mark csubj dobj aux acl det dobj compound nsubj poss amod compound compound nsubj ccomp neg advmod acomp poss compound nsubj nsubj aux relcl nsubj aux ccomp advmod mark det nsubj advcl advmod conj det amod dobj preconj acl prep det pobj prep auxpass pcomp cc conj prep amod pobj cc compound conj prep det pobj advmod prep det compound compound compound compound pobj advcl mark amod nsubj prep pobj aux ccomp prep det amod pobj aux conj dobj advmod aux xcomp det dobj aux acl dobj acl agent det compound pobj nsubj aux advmod advmod relcl nummod dobj prep prep det pobj aux ccomp prt nsubj prep amod pobj prep pobj prep det amod pobj cc conj cc amod nsubj aux amod nsubj ccomp prep amod pobj nsubj aux relcl dobj prep cc conj prep det pobj prep det pobj cc expl advmod advmod advmod nummod amod attr cc amod conj advmod nsubj aux relcl nsubj ccomp nsubj aux mark det nsubjpass prep pcomp det dobj prep pcomp prep det pobj prep pobj auxpass ccomp agent pobj prep compound compound pobj nsubj aux ccomp advmod prep det compound pobj advmod nsubj relcl det attr cc nsubj conj dobj prep compound pobj cc nsubj conj dobj prep det pobj nsubj relcl advmod acomp compound compound nsubj det compound appos prep nmod amod amod appos cc prep pcomp prt prep amod pobj prep amod advmod det nsubj relcl advmod aux xcomp nsubj aux det amod attr prep det amod pobj nsubj aux neg relcl amod dobj aux relcl prep nsubjpass acl advmod prep det compound pobj aux auxpass prep pcomp amod dobj prep det amod quantmod quantmod nummod amod pobj nsubj relcl poss compound dobj aux xcomp prep det compound pobj aux aux conj prep compound pobj nsubjpass auxpass aux xcomp amod dobj mark nsubj advcl det amod nsubj prep pobj aux advmod poss amod nsubj ccomp advmod compound nsubj dobj prep pcomp prt pobj cc nsubj conj advmod acomp cc mark nsubj advcl prep pobj amod advmod aux xcomp prep poss pobj cc conj dobj advmod amod nsubj aux advmod aux aux xcomp advmod compound dobj nsubj relcl aux xcomp advmod acomp prep amod pobj cc amod poss nsubj aux acomp prep det compound pobj amod nsubj nsubj aux ccomp aux xcomp prep compound pobj nsubj compound acomp prep det poss pobj cc aux nsubj conj advmod advmod nsubj aux ccomp acomp nsubj nsubj relcl acomp aux xcomp advmod mark amod nsubj advcl ccomp advmod neg acomp nsubj aux ccomp acomp aux xcomp advmod aux advcl poss compound compound compound dobj advcl prep compound pobj mark nsubjpass aux auxpass ccomp punct aux xcomp det dobj cc conj prep prep pobj nummod mark det compound compound compound nsubj advcl aux xcomp prep det amod pobj det amod dobj compound nsubj aux neg det dobj prep pobj aux advmod ccomp cc poss nsubj mark amod nsubj advcl aux xcomp advmod prep pobj prep det amod pobj mark det nsubj advcl prep pobj prep dep pobj nsubj aux acomp aux xcomp prep nummod pobj prep nummod pobj prep poss pobj advmod advcl agent det pobj nsubj advmod mark det amod nsubj compound appos aux ccomp acomp cc conj cc conj det amod cc conj nsubj mark poss nsubj aux advmod ccomp det dobj cc nsubj aux conj aux xcomp amod dobj advmod advmod prep det amod pobj ccomp det amod dobj prep poss amod compound pobj prep pobj amod prep pobj prep prep pobj prep pobj cc det nsubj det amod dobj det npadvmod prep pcomp amod compound dobj prep amod compound compound compound compound nsubjpass aux auxpass conj prep pobj nummod cc det amod cc conj nsubj aux mark det amod nsubj prep compound pobj aux ccomp prep prep pobj det npadvmod prep pobj prep compound pobj nummod pobj det nsubj prep amod pobj prep pobj aux advmod ccomp prep pobj advmod advmod cc amod conj poss nsubj auxpass neg conj prep nmod compound compound compound compound pobj advcl det amod npadvmod prep advmod nummod amod pobj cc nummod conj nsubj prep advmod advmod advmod compound compound nsubj aux pcomp prep pobj amod punct compound nsubj pcomp advmod amod dobj prep det compound pobj dobj nsubj aux relcl det advmod oprd nsubjpass aux neg auxpass relcl aux xcomp amod dobj acl dobj prep pobj prep nmod cc compound pobj aux advmod conj aux xcomp advmod advmod prep pobj poss compound compound nsubj advcl prep det amod pobj nsubj advmod relcl dobj advmod aux oprd amod attr det attr nsubj det attr prep det amod pobj prep pobj prep pcomp prt prep pobj prep det compound compound pobj nsubj aux relcl poss amod dobj cc amod amod nsubj prep pobj prep compound compound compound pobj prep pobj prep det pobj prep amod cc conj pobj det nsubjpass nsubj aux relcl compound dobj advmod oprd det amod nsubjpass prep poss compound pobj auxpass ccomp agent pobj cc conj prep det pobj prep det advmod amod pobj prep poss pobj prep pobj prep det amod compound pobj cc det conj mark amod amod amod nsubj aux advcl det dobj prep amod pobj mark nsubj advcl amod compound dobj aux relcl det dobj prep det pobj compound compound compound nsubj aux prep dobj nsubj pcomp det compound oprd mark nsubj advcl prep det pobj prep pcomp det compound dobj prep det amod pobj prep amod pobj det nsubj prep pobj prep poss amod dobj prep det compound pobj advmod ccomp det nsubj advmod det amod nsubj compound compound appos advcl prep det amod pobj aux nsubj nsubj prep pobj ccomp advmod nsubj aux neg dobj advmod det nsubj advmod det nsubj prep pobj cc conj aux relcl prt det amod dobj prep det pobj aux advcl prep amod pobj prep pobj cc conj nsubj det attr nsubj neg ccomp det dobj prep pobj compound nsubj cc compound conj acomp amod npadvmod nsubjpass auxpass prep amod pobj amod nsubj prep amod pobj mark det amod nsubj prep advmod det pobj aux advcl prep det pobj npadvmod det nsubjpass auxpass amod nsubj dobj aux xcomp intj det amod dobj prep pobj advmod appos cc det amod conj appos conj mark compound compound nsubj ccomp advmod acomp mark advcl prep nummod pobj det nsubj aux advmod ccomp advmod amod nsubj ccomp det amod dobj expl ccomp det attr mark det amod nsubj aux acl prep det amod attr cc det amod compound conj nsubj amod dobj aux relcl det dobj advcl prep det pobj prep det pobj dobj nsubj aux relcl oprd prep det poss case amod compound pobj nsubj ccomp amod dobj cc aux conj amod dobj det nsubj aux ccomp xcomp prt xcomp det nsubj prep amod nmod compound nmod nmod nmod pobj pobj det amod appos prep amod amod pobj mark prep pobj prep nmod nmod amod pobj auxpass ccomp advcl amod compound dobj auxpass prep pobj cc aux conj acomp prep compound pobj amod appos nsubj det amod prep pobj dobj prep pobj cc conj det appos prep amod quantmod pobj prep det pobj compound compound appos cc conj prep det pobj cc conj advcl advmod prep nummod compound pobj prep pobj compound nsubj prep compound pobj appos compound nsubj prep pobj cc conj dobj prep dobj nsubj pcomp prep compound pobj det nmod nmod amod appos prep det pobj prep det pobj prep det pobj prep pobj csubj amod dobj prep pobj nummod prep pobj prep det compound pobj cc advmod conj det dobj prep poss pobj compound nsubj nsubj relcl prep compound pobj prep prep compound compound pobj det amod compound compound appos nsubj relcl prep pobj mark det nsubj ccomp prt mark nsubj auxpass advcl aux xcomp det dobj prep det pobj prep det amod pobj cc nsubj conj acomp aux xcomp det amod dobj aux xcomp dobj det compound nsubj ccomp acomp nsubj aux det amod dobj prep poss amod amod pobj prep compound pobj det npadvmod compound nsubj mark prep det amod nummod pobj det nsubj prep amod pobj prep mark nmod pobj nsubj aux ccomp prep pobj det nsubjpass auxpass ccomp agent det nmod advmod pobj det nmod pobj nsubj dobj advmod mark compound nsubj advcl acomp aux xcomp mark nsubj ccomp neg det compound attr det nsubj ccomp prep pobj prep det amod pobj acl appos compound appos prep det pobj det amod amod appos prep pobj cc conj det nsubj mark compound compound compound nsubj nsubj advmod amod dobj amod appos aux ccomp prt prep det pobj appos det nsubj prep compound pobj prep pobj mark compound nsubj ccomp neg det attr prep det pobj cc aux neg conj dobj nummod nsubj cc conj prep amod pobj ccomp dobj prep aux advcl aux advcl prep poss pobj cc advmod conj dobj nsubj relcl acomp prep det pobj det nsubj aux relcl prep det amod pobj compound nsubj prep det nmod compound compound compound pobj prep pobj cc amod conj ccomp mark det nsubj prep pobj prep det pobj aux ccomp dobj cc mark det nsubj prep amod pobj aux conj dobj nsubj det amod attr aux relcl det amod dobj mark poss nsubj aux neg advcl dobj prep prep pobj nsubj ccomp det advmod amod dobj prep det pobj nummod nsubj ccomp advmod npadvmod advmod amod compound nsubj det amod appos prep det compound compound pobj prep pobj prep pobj prep det compound pobj compound nsubj aux amod dobj prep det pobj poss nsubj relcl advmod acomp cc poss nsubjpass auxpass conj prep amod det amod nsubj nsubjpass aux auxpass ccomp agent det pobj acl prep det pobj cc nsubj conj det nsubj ccomp compound attr nsubj relcl det dobj det compound compound compound compound dobj acl prep det pobj aux xcomp det dobj prep det compound compound pobj nsubj ccomp aux xcomp mark compound nsubj aux ccomp prep det pobj cc conj det dobj nsubj compound dobj prep compound pobj ccomp mark amod compound nsubj prep det compound pobj advcl mark nsubjpass auxpass ccomp amod npadvmod mark nsubj ccomp xcomp det compound compound dobj cc mark det nsubj conj det amod dobj aux acl prep pobj det amod nsubj prep det pobj prep det amod amod amod compound compound pobj acl prt agent det nmod nmod amod amod pobj amod appos prep pobj det compound compound nsubj prep amod pobj cc poss conj prep compound compound pobj acl prep pobj prep pcomp prt det npadvmod prep advmod quantmod quantmod nsubj prep pobj advcl dobj cc det amod nsubjpass aux auxpass agent nummod pobj prep pobj prep prep det pobj acl prep det compound compound pobj prep pobj mark det nsubjpass nmod amod appos aux auxpass ccomp compound dobj aux advcl prep compound pobj cc conj det dobj mark det ccomp csubj det compound compound compound dobj aux nmod npadvmod amod compound compound attr compound appos nsubj relcl advmod det compound compound compound attr conj det dobj nmod nmod nummod dobj prep pobj det npadvmod prep prep det pobj compound amod compound appos prep compound compound nmod amod pobj det amod det nsubj prep nsubj aux neg pcomp advmod acl det dobj compound appos aux xcomp dobj prep compound compound pobj prep det compound compound pobj aux conj amod quantmod nummod dobj prep advmod advmod nummod compound pobj prep det compound pobj conj cc det conj aux amod compound dobj prep pobj aux advcl det amod dobj prep det pobj prep det amod nmod prep compound compound pobj prep pobj mark nsubj aux ccomp det amod quantmod compound dobj dative amod pobj acl prep pobj aux acl dobj det nsubj nsubj relcl attr prep det quantmod compound nummod compound compound pobj acl amod npadvmod det amod dobj prep det pobj prep nmod nummod compound pobj advmod conj dobj aux xcomp prep det quantmod compound nummod pobj acl advmod prep pobj acl oprd prep amod pobj nsubj cc det conj aux ccomp det dobj prep compound nummod pobj advmod quantmod compound appos aux xcomp compound compound nsubj appos prep poss case amod compound compound pobj aux ccomp det nmod compound nummod compound dobj acl agent det amod pobj cc det quantmod compound nummod amod compound conj compound compound compound appos amod npadvmod det amod nsubj nsubj aux ccomp det amod quantmod quantmod quantmod quantmod quantmod compound dobj prep amod compound pobj ccomp advmod prep pcomp det dobj prep pobj det amod cc conj nsubj nsubj advcl det nummod compound dobj det compound nsubj det amod appos prep det compound pobj nsubj aux relcl prt dobj prep compound pobj prep pcomp det amod amod pobj advmod csubj det compound compound compound dobj aux ccomp prep pcomp compound compound dobj prep det pobj prep pcomp compound dobj aux advcl nsubj aux ccomp cc conj prep amod pobj nsubj relcl dobj prep det pobj parataxis amod dobj aux advcl poss dobj cc conj det amod nsubj prep det pobj prep pobj amod nsubj aux advmod dobj nsubjpass aux auxpass relcl prep amod cc aux advmod conj dobj nsubjpass aux neg auxpass relcl prep amod nsubj conj prep pobj cc conj aux advcl xcomp compound dobj aux xcomp det dobj nsubj aux relcl prep det compound pobj prep pobj prep det pobj aux acl xcomp amod dobj cc conj det amod dobj det compound appos nsubj acl prep det pobj prep pobj aux xcomp nummod compound dobj prep det pobj cc det nsubj conj neg acomp advmod nummod nsubj det amod dobj cc advmod nummod nsubj conj advmod nummod nsubj prep det nummod pobj nsubj ccomp det dobj prep amod pobj aux advcl mark nsubj ccomp dobj mark det nsubj aux advcl prep det pobj prep advmod det nsubj pcomp cc nsubj mark amod amod nsubjpass advmod auxpass neg ccomp aux xcomp mark det nsubj ccomp acomp prep amod pobj det nsubj prep det pobj conj det amod dobj prep pobj prep pobj amod nsubj prep pobj relcl aux xcomp prep compound compound pobj cc conj mark preconj det compound nsubj cc conj advcl det nmod dobj prep compound compound pobj prep pobj cc compound compound conj prep pobj conj acomp prep poss pobj det nsubj prep det compound pobj prep det pobj conj det amod attr prep det pobj prep det poss case amod pobj prep pcomp det dobj prep det amod pobj nsubj cc conj quantmod quantmod compound dobj prep amod pobj prep pobj prep prep det compound pobj appos pobj nsubj cc conj advmod advmod relcl prep aux advcl cc mark nsubj prep amod pobj advcl poss nsubj ccomp cc conj poss dobj prep pcomp det amod pobj prep det pobj det compound nsubj det npadvmod mark amod nsubjpass auxpass ccomp aux xcomp advmod nummod dobj det npadvmod prep det amod pobj prep amod pobj nsubj aux advmod amod dobj prep det amod cc conj pobj prep pobj nsubj relcl det advmod amod attr prep pobj prep pobj prep pobj cc conj prep prep det compound pobj cc det amod nsubjpass prep pobj acl prep det compound pobj det nmod amod pobj prep amod pobj appos prep amod pobj prep det compound pobj prep amod amod pobj aux auxpass conj oprd prep compound pobj cc nmod nmod amod conj prep pobj aux ccomp neg advmod amod dobj cc advmod amod cc conj conj compound nsubj nsubj relcl amod dobj prep compound compound pobj nsubj aux neg nsubj ccomp aux xcomp det compound dobj mark nsubj ccomp prep det pobj prep advmod amod amod compound pobj advcl compound nsubj det appos prep compound pobj det appos prep pobj prep det pobj nsubj dobj prep pobj aux advcl compound dobj cc conj det amod dobj prep pobj compound nsubjpass det amod appos prep det amod pobj advmod appos aux advmod auxpass prep det amod pobj prep det compound pobj poss nsubj compound appos det compound appos dobj det conj cc det compound conj prep det pobj compound appos aux advcl compound nmod amod cc conj dobj det amod compound nsubj det dobj prep det amod pobj nsubj acl prep pobj aux ccomp amod dobj prep pobj advmod cc prep det amod compound pobj nsubj det dobj prep pobj advmod nsubj advmod det compound nsubj acl compound compound dobj prep amod pobj ccomp amod quantmod quantmod quantmod nummod dobj advmod quantmod nummod npadvmod mark nsubjpass auxpass advcl det nsubjpass appos acl det amod dobj prep amod pobj cc conj auxpass prep pobj agent det compound pobj prep det compound pobj poss amod nsubj acomp cc amod quantmod det nsubj prep poss pobj conj prep det compound compound pobj conj neg acomp cc amod nsubj prep det pobj prep compound pobj cc det conj prep pobj aux conj compound compound dobj aux xcomp prt dobj prep pobj aux acl poss amod dobj prep pobj cc prep pobj prep compound pobj advmod advmod compound compound nsubj aux xcomp det advmod nsubj prep compound pobj cc conj aux ccomp nsubj conj cc nsubj conj prt det nsubj aux neg conj poss dobj prep pobj cc prep amod pobj prep det compound pobj nsubj advmod prep pobj det amod npadvmod prep pobj det nsubj poss dobj prep amod compound pobj nsubj amod compound dobj prep amod pobj cc compound compound conj poss nsubj prep det pobj aux acl det dobj prep pobj nsubj relcl npadvmod det amod nsubj det amod attr advmod nsubj relcl compound nsubj aux relcl prep det compound compound pobj amod nsubj aux advmod compound dobj advmod prep pobj compound nsubj ccomp dobj prep amod pobj mark nsubj advcl compound compound attr det nsubj aux det advmod amod dobj prep pcomp det compound dobj prep pcomp prt advmod advmod mark nsubj advcl advmod advmod amod nsubj prep pobj prep det pobj prep det amod compound pobj acomp prep det amod pobj nsubj aux ccomp acomp advmod cc prep det compound pobj nsubj advmod aux neg conj amod amod dobj compound compound appos det dobj aux acl advmod compound conj det advmod amod compound appos cc prep pobj conj dobj prep pobj advmod advmod dep prep pobj prep amod compound pobj prep pobj prep det amod pobj prep det pobj advmod nummod dobj prep compound nummod pobj det compound nsubj aux xcomp nsubj ccomp acomp det nsubj aux neg ccomp dobj det nsubj acl oprd mark poss compound nsubj advcl aux xcomp dobj prep det compound pobj prep det pobj advmod det nsubj relcl acomp det nsubj prep det pobj cc conj prep det pobj prep det amod pobj advmod nsubj prep nummod pobj cc conj amod compound compound amod compound dobj prep det compound pobj aux conj amod dobj prep poss amod pobj nsubj parataxis cc poss amod nsubj prep pcomp det dobj prep pobj cc conj conj det amod attr prep det pobj prep amod compound pobj amod nsubj compound nsubj ccomp advmod prep compound pobj prep pobj cc conj cc nsubj conj advmod advmod advmod prep aux pobj dobj compound compound compound mark det nsubj prep pobj aux acl xcomp det nsubj ccomp dobj prep pobj prep compound pobj prep det pobj advmod advmod cc det nsubj prep pobj cc conj cc amod compound compound compound compound conj conj dobj prep pobj advcl aux xcomp advmod compound pobj compound dobj dobj nsubj relcl prep pobj nummod compound pobj compound compound compound nsubj det appos prep det compound compound compound compound pobj advmod nmod compound amod dobj advmod mark nsubj advcl cc det nsubj conj det dobj advmod compound compound compound nsubj aux dobj aux xcomp det amod dobj cc conj amod dobj prep det pobj cc compound nsubj appos conj prep pobj prep pobj mark nsubj ccomp neg prep poss amod pobj nsubj ccomp det attr prep pcomp compound compound compound dobj advmod det compound nsubj advcl dobj prep amod pobj advmod conj aux xcomp det dobj cc conj advmod compound nsubj prep pobj nsubj compound dobj det amod nsubj conj dobj prep amod pobj neg det npadvmod conj nsubj advmod aux ccomp prep det pobj mark nsubj advcl xcomp nsubj aux ccomp expl attr prep advmod det amod nsubj prep det pobj aux pcomp prep pcomp amod compound pobj cc mark nsubj advcl poss dobj advmod advmod nsubj aux prep det amod nsubj acl prep pcomp poss dobj ccomp aux auxpass xcomp agent det pobj prep compound pobj advcl dobj prep det pobj nsubj amod compound nsubj relcl auxpass ccomp aux xcomp dobj cc conj dobj compound nsubj ccomp advmod prep det pobj compound nsubj relcl nsubj ccomp cc conj amod compound nsubj cc compound conj nsubj aux advmod ccomp cc conj prep pobj det aux advcl det dobj nsubj relcl det nsubj quantmod compound nummod dobj prep det pobj cc nsubj conj nsubj ccomp advmod neg dep amod nsubjpass appos cc conj acl agent compound pobj prep amod prep det pobj aux auxpass acomp prep amod quantmod nummod quantmod det amod pobj prep det amod pobj prep pobj det compound nsubj prep det compound compound pobj ccomp prep pobj det nmod cc conj nsubj prep pcomp det dobj prep det compound pobj cc amod conj mark nsubj aux advcl prep amod compound compound pobj prep det compound compound pobj det compound appos cc amod conj prep det compound compound pobj nsubj relcl det dobj prep compound pobj prep det pobj compound pobj cc conj det compound dobj advcl prep pobj nummod prep amod pobj nsubj compound attr ccomp attr prep det amod pobj prep prep poss pobj compound appos nsubj relcl det dobj prep det pobj prep nummod amod pobj prep det nmod nmod amod pobj prep compound pobj compound nsubj det amod attr prep det pobj amod amod nummod acl prep pobj conj cc conj prep det pobj det nsubj acl amod dobj cc det conj nsubj relcl prep pcomp nsubj ccomp advmod acomp cc det nsubj prep amod pobj advmod acomp det nsubj ccomp det nummod compound compound dobj advmod prep compound pobj det amod compound appos cc conj acl prep compound pobj prep pobj compound nsubj mark nsubj ccomp det dobj nsubj aux aux xcomp dobj nsubj aux ccomp advmod cc advmod conj aux xcomp aux xcomp dobj nsubj parataxis cc neg conj nummod cc conj npadvmod mark nsubj advcl advmod acomp advcl det dobj intj det dobj prep advmod compound nummod pobj cc det conj prep nummod amod pobj nsubj attr prep nmod case amod pobj cc det npadvmod det nmod prep pobj nsubjpass auxpass ccomp prep pcomp det amod dobj prep compound pobj appos prep det pobj compound compound dobj prep det pobj cc nsubj aux advmod prep nsubj neg ccomp prep amod pobj cc conj compound nsubj aux poss dobj conj amod dobj cc conj dobj cc det conj prep pobj nsubj nsubj aux pcomp prep pobj ccomp aux xcomp dobj aux advcl poss dobj poss nsubj cc conj cc det amod conj compound compound compound nsubj prep det amod amod pobj nsubj dobj aux xcomp prep pobj nsubj prep det amod pobj prep det compound pobj aux dobj prep poss pobj prep det amod compound pobj cc poss amod conj prep det amod pobj aux advcl poss amod dobj nsubj advmod prep amod amod amod pobj prep pobj prep det compound poss amod amod pobj cc compound nmod amod amod amod conj mark det nsubj aux advcl det amod nsubj aux poss compound dobj npadvmod nummod appos compound compound compound nsubj appos prep det amod amod compound compound pobj prep pobj det amod compound dobj prep det compound pobj prep poss pobj prep pobj csubj dobj ccomp poss amod attr nsubj prep det pobj advcl prep det pobj acl agent det pobj prep pcomp det amod compound dobj nsubj poss dobj cc conj prep poss compound compound pobj advmod amod cc advmod conj prep amod nsubj prep compound pobj appos aux csubj prt advcl amod dobj nsubj advmod relcl dobj prep pobj prep det pobj aux acl dobj prep pcomp cc conj det dobj prep det pobj cc det amod conj prep pobj acl det npadvmod aux neg dobj prep pcomp det nmod amod amod dobj advmod poss nsubj aux relcl amod dobj prep pobj det nsubj dobj prep poss nummod pobj prep pobj cc nsubj ccomp det amod dobj xcomp dobj compound nsubj det compound compound appos prep pobj nsubj aux mark nsubj advcl dobj prt det compound det npadvmod amod nsubj prep det pobj advmod conj dobj conj cc conj advcl dobj prep poss pobj aux acl det dobj compound nsubj amod compound nsubj prep det nmod amod pobj prep compound pobj aux ccomp cc conj prep det pobj prep amod compound pobj cc nsubj aux conj mark nsubj prep pobj aux neg ccomp compound nsubjpass auxpass advmod ccomp prep dep pobj advmod nsubjpass auxpass advcl cc conj prep pobj advmod det nsubj mark det amod nsubjpass aux auxpass ccomp prep pobj cc mark nsubj aux conj det dobj aux acl poss dobj det npadvmod prep pobj nsubj conj amod quantmod nummod amod compound dobj cc nummod conj appos advmod advmod nsubj relcl dobj aux relcl prep pobj cc amod conj amod appos nsubjpass auxpass relcl prep pobj prep pobj prep pobj prep pobj advmod dep dobj prep pobj prep amod pobj cc nsubj mark nsubj aux ccomp det dobj aux det dobj aux xcomp prep pobj aux advcl advmod punct ccomp nsubj amod dobj mark nsubj aux neg relcl prep poss pobj prep amod pobj cc nsubj conj det amod nsubj ccomp aux xcomp advmod compound nsubj appos advcl prep poss pobj compound npadvmod nsubjpass auxpass relcl prep det pobj prep det pobj prep pobj cc conj prep nsubj pcomp advmod acomp det npadvmod nsubj advmod advmod acomp aux xcomp advmod compound compound compound nsubj prep det compound pobj nsubj csubj amod dobj prep prep amod pobj aux ccomp det dobj acl compound dobj det nummod cc quantmod compound conj nsubj advmod ccomp amod dobj prep det pobj prep det pobj nsubj compound appos advmod aux aux xcomp prep det pobj advcl mark nsubj aux neg ccomp amod dobj advmod advmod mark nsubj advcl amod compound dobj punct nsubj cc nsubj aux ccomp compound nsubj appos poss compound nsubjpass auxpass relcl prep pobj prep pobj cc det amod amod conj appos prep pobj det nsubj advmod acomp prep pobj det nsubj ccomp mark nsubj aux neg ccomp dobj aux xcomp prep pobj det nsubj aux neg ccomp dobj aux xcomp dobj nsubj dep aux xcomp amod quantmod nummod dobj prep det pobj prep prep pobj cc advmod nummod conj det compound compound dobj prep nummod pobj conj compound dobj advmod dobj nsubj aux aux ccomp prep pobj nsubj aux relcl advcl mark det compound nsubj aux neg conj compound compound attr prep pobj cc det amod compound nsubj conj poss nmod compound compound compound dobj advcl compound dobj advmod aux xcomp det dobj prep det amod pobj dobj nsubj aux ccomp aux xcomp prep prep det pobj punct ccomp nsubj ccomp poss dobj aux acl det dobj prep det amod pobj compound nsubj det amod appos prep det compound compound pobj cc det amod conj prep det amod amod pobj nsubj dobj prep det amod amod pobj prep det pobj prep det pobj nsubj aux det dobj prep pobj dative pobj nsubj relcl prep pobj npadvmod prep amod amod amod compound pobj aux aux xcomp det dobj prep pcomp cc advmod conj mark amod nsubj advcl acomp det nsubj prep pobj advmod amod npadvmod prep det pobj mark nsubjpass auxpass advcl agent det amod pobj prep pobj nummod det nsubjpass auxpass mark mark nsubj aux advcl cc conj det dobj prep pobj amod nsubjpass prep pobj aux auxpass conj xcomp det dobj conj cc conj det amod npadvmod advmod advmod advcl det dobj nsubj prep det compound compound compound compound pobj advmod det nsubjpass auxpass relcl advmod mark amod nsubj aux advcl prep det pobj aux xcomp dobj dative pobj advmod det amod nsubj prep compound pobj relcl aux xcomp det dobj nsubj advmod amod cc conj compound compound appos punct ccomp prep poss pobj compound compound appos prep det pobj prep pobj compound nsubj prep pobj prep pobj dobj nsubj aux relcl amod nsubj prep compound pobj compound compound compound conj compound appos prep pobj xcomp dobj advmod advmod prep amod pobj prep det pobj cc det nmod prep pobj compound conj nsubj prep det pobj prep compound pobj det nmod nmod amod amod attr cc conj advmod quantmod nummod dobj aux xcomp dobj prep det pobj nsubj aux relcl prep det pobj nsubj aux conj nummod dobj prep det pobj det amod amod conj prep compound pobj prep pobj cc det nsubj amod amod nsubj aux ccomp dobj nsubj advmod det compound nsubj aux ccomp dobj prep nummod amod amod pobj appos compound conj cc conj nsubj aux relcl prep det pobj nsubj aux neg advmod amod nsubjpass aux auxpass ccomp dative pobj prep det nummod pobj cc advmod nsubj aux dep advmod amod nsubj conj aux conj advmod advmod acomp nsubj cc conj aux advmod acomp mark nsubj aux ccomp acomp aux xcomp det dobj nsubjpass aux auxpass oprd prep pobj cc conj prep det amod pobj compound compound appos advmod conj prep compound pobj cc conj dobj prep pobj cc conj nsubj ccomp nsubj aux advmod ccomp prep pobj prep pcomp compound dobj prep amod pobj cc amod conj prep amod pobj det npadvmod prep compound pobj prep poss pobj prep det amod pobj compound nsubj nsubj ccomp advmod advmod prep det amod pobj aux aux dobj prep poss pobj prep pobj cc conj nsubjpass auxpass agent compound pobj compound appos compound compound conj compound conj compound compound conj compound conj compound compound conj pobj compound pobj compound conj amod conj compound conj compound conj compound conj compound conj compound conj compound conj compound conj compound conj compound conj compound conj compound conj compound conj compound conj compound conj compound conj compound conj compound conj compound conj compound compound conj compound conj compound conj compound conj compound conj cc compound conj compound nsubj ccomp amod npadvmod nummod nsubj det amod attr mark det nsubj advcl prep advmod advmod det nsubjpass auxpass pcomp det amod nsubj aux advmod aux nsubj ccomp advmod aux xcomp det dobj prep det amod compound compound pobj compound nsubj compound appos compound compound appos compound conj cc compound conj ccomp prt nummod compound dobj prep pobj nsubj prep det pobj aux ccomp acomp aux advmod xcomp det dobj acl dobj prep pcomp aux xcomp dobj prep pobj det nsubj ccomp aux xcomp acomp aux advmod advmod xcomp dobj nsubj relcl dobj det nsubj acomp aux xcomp dobj prep amod pobj cc conj cc expl aux conj det amod attr prep pobj prep advmod advmod nummod quantmod pobj compound compound nsubj aux acl det amod dobj aux advcl dobj nsubjpass aux auxpass relcl nsubj relcl dobj advmod compound nsubj nsubj relcl dobj advcl det npadvmod amod dobj det amod dobj prep pobj acl prep pobj acl agent det pobj nsubj aux dobj prep det compound compound pobj cc compound compound nsubj aux conj prt aux advcl dobj prep amod pobj amod quantmod nummod npadvmod amod compound compound nsubj aux prep det amod amod pobj det amod nsubj prep compound pobj nsubj prep pobj ccomp acomp aux xcomp aux xcomp poss dobj advmod nsubjpass aux auxpass conj prep det pobj cc conj nsubj ccomp cc conj det dobj cc conj prep det pobj cc compound conj conj det dobj nsubj aux dative dobj prep mark nsubjpass aux auxpass advcl advmod aux auxpass csubj cc advmod aux conj amod dobj prep advmod pcomp cc conj compound punct aux mark det nsubj ccomp compound dobj mark nsubj advcl prt prep pobj nsubj det attr prep amod pobj acl amod dobj mark det nsubjpass aux auxpass relcl agent amod pobj nsubj relcl det dobj prep pcomp det nsubj prep det pobj aux mark amod nsubj aux neg ccomp aux xcomp dobj mark nsubj advcl acomp cc conj nsubj prep det pobj aux xcomp amod compound dobj prep compound compound pobj nsubj advmod relcl dobj prep det pobj advmod nsubj relcl prep advmod amod pobj nsubj aux neg compound dobj cc amod conj nsubj acomp cc nsubj nsubjpass aux auxpass ccomp prep det amod pobj det nsubj mark nsubj ccomp poss compound dobj cc conj poss dobj cc conj nsubj aux mark nsubj ccomp aux auxpass xcomp prep pobj mark expl ccomp det dobj prep pcomp det pobj prep compound pobj cc mark nsubj advcl acomp prep pobj nsubj aux neg conj acomp aux xcomp nsubj ccomp aux xcomp advmod advmod prep pobj prep pobj advmod prep pobj conj cc amod amod conj det nsubjpass aux auxpass prep amod amod pobj nsubj relcl mark nsubjpass auxpass advcl cc conj prt nsubjpass aux advmod auxpass advmod nsubj advcl det amod dobj cc advmod conj poss dobj amod nsubj acomp prep det compound pobj conj cc conj cc amod nsubj cc amod conj aux mark det nsubj ccomp advmod advmod quantmod quantmod nummod attr prep det pobj expl ccomp det amod attr cc conj cc nsubjpass auxpass conj prep det amod pobj advmod advmod nsubj aux xcomp advmod acomp prep det pobj cc det nsubj conj advmod acomp cc nsubj det dobj cc conj prep amod pobj neg advmod nsubj prep amod pobj advmod appos det compound appos aux neg ccomp dobj cc aux auxpass conj prep prep pobj nsubj aux conj dobj cc conj prep amod pobj cc conj det dobj mark advmod advcl advmod amod dobj prep amod prep prep pobj acl agent det pobj mark advcl compound npadvmod det amod compound nsubj aux prep det amod pobj cc conj det amod dobj mark nsubj advcl acomp preconj det amod nsubj cc det conj aux dobj advmod det nsubj advcl det dobj acomp neg aux xcomp det dobj cc amod compound conj cc aux advmod amod conj prep pobj conj conj cc conj aux neg aux xcomp poss dobj intj nummod dobj prep pobj mark advcl cc nsubj aux neg dobj cc conj prep det amod pobj det compound nsubj acomp cc aux xcomp det dobj prep det compound pobj prep det amod pobj cc conj poss dobj advmod advmod mark nsubj advcl dobj cc conj acomp nsubj ccomp nummod dobj prep pobj prep pobj cc conj nsubj aux neg ccomp prep poss pobj advmod mark nsubj advmod advcl prt prep det pobj advmod cc conj prep det pobj cc det conj advcl det amod dobj cc advmod conj det attr nsubj relcl neg det amod attr advmod mark nsubj advcl acomp advcl det amod dobj prep pobj cc conj mark mark poss nsubj advcl prt prep pobj cc advmod conj dobj cc nsubj aux aux xcomp prep pcomp amod dobj acl advmod prep det pobj compound amod prep compound pobj cc amod conj acl prep det amod pobj ccomp poss nsubj prt cc conj aux acomp nsubj aux aux ccomp mark nsubj aux ccomp poss dobj dobj mark poss nsubj advcl det dobj prep poss pobj acomp nsubj aux advmod advmod ccomp advmod dobj mark nsubj advcl aux advcl det amod dobj punct

2.1 De-identify all person names (PERSON) in the webpage document with [REDACTED] and visualize them as shown in class.

In [ ]:
 
In [15]:
def replace_person_names(token):
    if token.ent_iob != 0 and token.ent_type_ == 'PERSON':
        return '[REDACTED] '    
    return token.string

def redact_names(nlp_doc):
    for ent in nlp_doc.ents:
        ent.merge()
    tokens = map(replace_person_names, nlp_doc)
    return ''.join(tokens)

docs = nlp(mytext.lower()) 
redacted = redact_names(docs)
In [16]:
docs = nlp(redacted.lower()) 
displacy.render(docs , style = 'ent', jupyter = True)
advertisementbelarus GPE , led by a virus-denying autocrat, has imposed no lockdowns. brazil GPE ’s leader, who has played down the virus, faces an uncertain future.right nowafter a backlash to his suggestion that injecting disinfectants could combat the coronavirus, president [redacted] indicates his daily DATE white house ORG briefings are no longer worth his time.many americans NORP who had assumed they could stay overseas till the pandemic ebbed now face an unnerving choice: either prepare for the possibility of being infected and treated in foreign hospitals, or risk infection on the way back to the united states.the u.s. GPE state department ORG , warning that commercial flights from overseas may end in the coming days DATE , is urging americans NORP abroad to grab any opportunity to board them.flights organized by the state department ORG that have so far returned 65,000 CARDINAL americans NORP from across the world are winding down. some continue in limited numbers, in areas like the indian NORP subcontinent and africa LOC . and american NORP diplomats have helped commercial airlines cut through foreign regulations that have restricted flights in and out of some countries during the pandemic. but there still are at least 17,000 CARDINAL american NORP citizens or legal residents abroad who have indicated they need help.officials are suggesting that the risk of contracting the virus from traveling on any kind of flight is offset by disparities in health care systems.“you can come back to the united states GPE where you are a citizen and you have access to health care and you have access to an infrastructure that is still intact,” said dr. [redacted] , the state department’s ORG deputy chief medical officer. but by hunkering down, in developing countries in particular, where the virus has yet to peak, “you will be an american NORP citizen in a foreign country that didn’t have great infrastructure to begin with.”and students studying abroad in the united states GPE have been stranded with dwindling financial resources.many of the more than a million CARDINAL international students who left their home countries to study in the united states GPE had been living in college dorms. they were left to find new housing after campuses shutdown. a substantial number of them are also watching their financial lives fall apart. visa restrictions prevent them from working off campus, but campuses are now closed. and while some come from families wealthy enough to pay for their housing or whisk them home, many others had already been struggling to cobble together tuition fees, which tend to be much higher for international students. and many currencies’ values have collapsed relative to the u.s. GPE dollar.some international students say they have had to turn to food banks. others are couch surfing in the friends’ homes, but don’t know how long they will be welcome. those who were able to fly home before international borders closed are now not sure they will be able to come back to finish their studies.prime minister [redacted] said on saturday DATE evening TIME that spaniards would be allowed outdoors to take a stroll or exercise as of may 2 DATE if the country’s coronavirus numbers continued to improve over the coming week.in a televised address, mr. [ PERSON redacted] didn’t detail what limits to sports would still apply. but his announcement came as spanish NORP children prepared to go outdoors on sunday DATE for the first ORDINAL time since the lockdown came into force in mid-march DATE . they will be able to stroll for one hour TIME within one kilometer QUANTITY of their homes when accompanied by an adult.mr. [redacted] also said that the easing spain GPE ’s lockdown would be “gradual and asymmetrical, but coordinated.” some regional and local leaders ague that their areas have already contained the epidemic, and they are pushing to reduce lockdown measures locally ahead of any national easing.spain reported a slight uptick in its daily DATE death toll with 378 CARDINAL dead on saturday DATE , compared to 367 CARDINAL on friday DATE . but the country crossed a significant milestone this week DATE by registering more hospital recoveries than new coronavirus cases.the country’s lockdown has been extended until may 9 DATE . but some local and regional politicians have stressed that the daily DATE number of coronavirus fatalities has fallen to below 10 CARDINAL a day in half CARDINAL of spain GPE ’s 17 CARDINAL regions. the push for local easing of restrictions has particularly come from islands as well as southern regions whose hospitals were never overwhelmed with covid-19 patients.as ORG brazil GPE ’s coronavirus contagion accelerated this past week DATE , with nearly 53,000 CARDINAL confirmed cases and 3,670 CARDINAL deaths, speculation intensified over how much longer president [redacted] would last in power.in recent weeks DATE , mr. [redacted] ’s strikingly dismissive response to the coronavirus pandemic, which he has called a “measly cold” that cannot be allowed to throttle economic growth, generated calls for impeachment at home and bewilderment abroad.he ORG was already struggling to govern effectively when, on friday DATE , his star cabinet minister resigned with an explosive speech that basically called his soon-to-be former boss a criminal.mr. bolsonaro became a president without a political party in november DATE , after falling out with leaders of the social liberal party ORG , which had backed his presidential bid. and several political allies — including two CARDINAL of mr. [redacted] ’s sons — are under investigation in a series of criminal and legislative inquiries.given those challenges, which have left mr. [redacted] deeply isolated, the dramatic exit of his justice minister was seen by critics and supporters of the president as a potentially destructive blow to his grip on power during a public health crisis and a recession.and, while several latin american NORP leaders have seen a bounce in public opinion as they imposed strict quarantine measures to curb the spread of the coronavirus, mr. [ PERSON redacted] ’s popularity has dropped amid what critics call a flailing response. as he headed off the ice after playing a hockey game in an amateur tournament in late march DATE , the leader of belarus GPE brushed aside reporters’ anxious questions about the coronavirus pandemic.“there are no viruses here,” said the belarusian NORP president, [redacted] , gesturing to the crowded arena. “do you see any of them flying around? i don’t see them either.[redacted] a time when some countries, like germany GPE and denmark GPE , having tamped down the initial outbreak of the virus, are experimenting with cautious openings of businesses and schools, belarus GPE is an outlier. it never imposed any restrictions at all.restaurants, coffee shops and movie theaters remain open. last weekend DATE , churches were packed for orthodox easter. professional soccer is in full swing, though the roaring crowds of earlier this month DATE have thinned. in the capital, minsk, the subways are crowded. most businesses require workers to show up.neither the raw numbers of infections, nearly 9,000 CARDINAL , nor the total deaths, 63 DATE , suggest that belarus’s epidemic is grossly disproportionate, though ukraine GPE with four CARDINAL times the population has fewer reported cases.however, few people believe the official tallies; there is some evidence that the true numbers are being suppressed.without a free press or any viable opposition parties, belarusians have little recourse to challenge the response. caught in the grip of an autocrat whom critics are calling one CARDINAL of the world’s foremost virus deniers, they have little choice but to accept official policy: the economy will keep chugging along, whatever the cost in human lives.the metropolitan opera’s at-home gala — a worldwide relay of live streamed performances that, in contrast to opera’s usual grandeur, was filmed using only household devices — was presented at metopera.org ORG and will remain available until sunday DATE evening eastern time TIME . it has an only-in-opera level of aspiration and difficulty: a roster of more than 40 CARDINAL of the company’s starriest singers, plus members of the orchestra and chorus, performing live across nine CARDINAL time zones. among them are lisette oropesa, in baton rouge GPE , la. GPE ; [redacted] , in vienna GPE ; and piotr beczala, in what he described to [redacted] , the met’s general manager, as a village at the end of the earth in poland.the DATE met halted performances on march 12 DATE in response to the coronavirus pandemic — and eventually canceled the remainder of its season. mr. [redacted] — who hosted from new york GPE along with yannick nézet-séguin ORG , the met’s music director, who is in montreal GPE — said that the idea came about because “i am determined to keep the met in the consciousness of the broader public, and i am determined to use any possible means to do that.”since the opera house ORG went dark, it has posted a free stream from its vast met opera on demand library every night TIME . (mr. [ PERSON redacted] said that in the past five weeks DATE , the number of paid subscribers to that on-demand service has doubled, to 30,000 CARDINAL .) each stream is accompanied by a “donate now” button GPE ; the at-home gala has one CARDINAL , too, though mr. [redacted] was quick to emphasize that this is not “a pbs telethon.”as the drumbeat grows for transparency about the secretive group guiding britain GPE ’s response to the coronavirus — the scientific advisory group for emergencies, or sage — the government acknowledged that prime minister [redacted] ’s most senior aide, dominic cummings, has listened in on the panel’s meetings.but a spokesman for downing street said on saturday DATE that mr. [redacted] was not a member of the group and did not influence policy.“no. 10 CARDINAL officials and officials from other departments attend/dial in to sage to listen to its discussions and occasionally ask questions, which is essential at a time the government is dealing with a global pandemic,” downing street said in a statement.on saturday DATE britain GPE ’s department of health and social care ORG said that the number of deaths in the country had surpassed 20,000 CARDINAL and that the number of confirmed cases is nearing 150,000 CARDINAL . britain GPE is the fifth ORDINAL country to record that many deaths, though its tally does not include deaths outside of hospitals. “it’s a very sad day for the nation; 20,000 CARDINAL deaths is clearly 20,000 CARDINAL too many,” [redacted] , the medical director of the national health service ORG in england GPE , said on saturday DATE at a news conference. opposition leaders have demanded more transparency from the group, whose members are largely anonymous and whose meetings are held in private. the british NORP government says it is being “guided by the science” coming from the group, but critics say the science is unclear.jonathan ashworth, who oversees the opposition the labour party’s health policy, called on the government to publish the minutes of the panel’s meetings. “we need to understand whether mr. [redacted] was contributing to the debate or influencing the debate,” he told sky news on saturday.the developments came as leaked cabinet briefings to the guardian ORG newspaper indicated that ministers were warned last year DATE that britain GPE risked facing an influenza-type outbreak and that the country needed a robust plan to deal with it. a possible pandemic was at the top of a confidential annual national security risk assessment signed off by the government’s chief scientific adviser.in other developments in britain GPE :the government’s website for essential workers and their families to book coronavirus tests reopened on saturday DATE after shutting down the day DATE before when tens of thousands CARDINAL of requests flooded it. but the maximum capacity had been reached by 8 a.m. TIME on saturday DATE , according to a message published on the website.the defense ministry ORG said on friday DATE that the country’s armed forces would be given insect repellent to protect against coronavirus infections, but offered no evidence that the product. containing a lemon eucalyptus oil extract, would be effective.a 99-year-old charity fund-raiser — [redacted] , who is also a world war ii EVENT veteran — has the country’s no. 1 CARDINAL song by sales this week DATE , according to the country’s official charts company. like captain moore’s other ventures, the single — a rendition of “you’ll never walk alone,” featuring the singer [redacted] — is to raise money for health care charities during the coronavirus crisis.the virus has infected more than 2,837,000 CARDINAL people in at least 177 CARDINAL countries.the governments of the united states GPE , france GPE and the netherlands GPE are funneling more taxpayer dollars MONEY into airlines to offset the devastating fallout from the coronavirus on the global travel industry.the u.s. GPE treasury department ORG said on saturday DATE that it had given an additional $9.5 billion MONEY to american NORP carriers looking for help to pay employees. the funds, which are part of the $2.2 trillion MONEY stimulus package congress ORG approved last month DATE , brings the total aid to the industry to $12.4 billion.the department also enabled airlines to tap into another $17 billion MONEY lawmakers set aside for businesses considered crucial to national security. france GPE and the netherlands GPE are providing a bailout of 10 billion CARDINAL euros, about $10.8 billion MONEY , to salvage air france-klm, one of europe LOC ’s biggest airlines.air france GPE -klm will receive a €4 billion MONEY bank loan backed by the french NORP state and a €3 billion MONEY direct government loan, france GPE ’s finance minister, said late friday DATE . the dutch NORP government said it would provide an additional €2 billion to €4 billion MONEY in public aid.the infusion falls short of nationalizing the airline, in which the french NORP and dutch NORP states each own a 14 percent PERCENT share. the european commission ORG — the executive branch of the european union ORG , which has thrown out restrictions on state support because of the deep economic downturn — swiftly approved the bailout.the world health organization ORG has warned against using coronavirus antibody tests as a basis for issuing “immunity passports” to allow people to travel or return to work.laboratory tests that detect antibodies to the coronavirus “need further validation to determine their accuracy and reliability,” the global agency said in a statement on friday DATE . inaccurate tests may falsely label people who have been infected as negative, or may falsely label people who have not been infected as positive, it noted.countries like italy GPE and chile GPE have weighed providing “immunity passports” to let those people who have recovered from the virus return to work, in an effort to begin easing lockdown restrictions and stem the economic fallout.in the united states GPE , scientists working around the clock in shifts managed to compare 14 CARDINAL antibody tests on the market, and the news wasn’t good. only one CARDINAL test delivered no false positives — and just two CARDINAL others did well 99 percent PERCENT of the time.the w.h.o. said it supported the testing of medical workers to determine whether they have antibodies, as that data can add to the understanding of how the coronavirus behaves. but it said that most such tests currently “are not designed to determine whether those people are immune to secondary infections.”the assessment came as the w.h.o. held a virtual meeting on friday DATE in which global heads of state vowed to cooperate on coronavirus vaccine research and treatments — though neither the united states GPE nor china GPE joined the initiative.although leaders like chancellor [redacted] of germany GPE and president [redacted] of france GPE were vague in their pledges, the absence of any u.s. GPE representative at the meeting was the latest sign of a withdrawal of the world’s biggest economy in tackling the coronavirus on a global scale. migrants and others sent about $689 billion MONEY in global remittances in 2018 DATE , according to the world bank ORG — money that relatives and friends back home depend on to survive. but as millions CARDINAL of migrant workers see their hours TIME cut or lose their jobs because of the economic slowdown from the pandemic, the world bank ORG said this week DATE that global remittances were projected to plummet about 20 percent PERCENT this year DATE , in “the sharpest decline in recent history.”and that could have far-reaching effects in some developing and poorer nations like mexico GPE , which was the third ORDINAL -largest recipient of remittances in 2018 DATE — after india GPE and china GPE , according to the world bank ORG — and the largest recipient of money sent from the united states.amid the u.s. GPE economic slowdown in recent weeks DATE , millions CARDINAL of undocumented mexicans NORP in the united states GPE , like other immigrant populations, have been left vulnerable without job security and unemployment benefits.a GPE major decrease in remittances could cause not just economic duress, but also political and social tension, said [redacted] , who teaches international relations at new york university ORG .“i don’t think governments want to see this money contract, because it functions as a sort of de facto social welfare system,” said mr. [redacted] , the author of “outsourcing welfare,” a book about remittances. “in that way, they take pressure off governments to provide welfare assistance and guarantee a certain standard of living.”“composition vi,” an abstract painting by the russian NORP master wassily kandinsky, has now been restaged in the messy room of a connecticut GPE teenager. his mother, [redacted] , a piano teacher, arranged cymbals, a guitar and a toy boat among the room’s contents to symbolize kandinsky’s musical and marine motifs. a blue latex glove reminds the viewer of the present day DATE . people sheltering in place are seeking new ways to connection online, and amid the pandemic’s bleakness, some report a surge in creativity. maybe this is why a facebook group featuring [redacted] recreations of famous paintings has more than half a million CARDINAL members, just a few weeks DATE after it was created. the group — izoizolyacia, combining the russian NORP words for “visual arts” and “isolation” — was started in moscow GPE by a project manager at a tech company. its predominant language is russian NORP , but more than a third CARDINAL of its members live outside russia.the copying-artworks gag is not new, and several museums — including the getty in los angeles GPE and the rijksmuseum in amsterdam GPE — are encouraging homebound art fans to send in photos of efforts to bring their favorite paintings to life. but in terms of facebook followers, at least, izoizolyacia’s ORG audience appears to be the most engaged.even as wedding halls and hotels have shuttered, honeymoons evaporated and curfews slammed down, the coronavirus has not quelled couples’ ardor in cairo GPE . and like many others across the middle east LOC , they pushed ahead with weddings this past week DATE . in egypt GPE , some couples shrank their ambitions to small family gatherings. others flouted public health restrictions with secret parties and guerrilla photo shoots. their haste stemmed from a desire to beat the deadline of ramadan, which started friday DATE . the holy month DATE is a solemn period when weddings are rare.some countries are adapting. in the united arab emirates GPE , hurried couples can now obtain wedding licenses online. in kuwait GPE , marriage courts offer services by special appointment — though divorces are unavailable.in saudi arabia GPE , some couples have skipped the once-ironclad tradition of holding a wedding celebration before moving in together, even if they are already legally wed.such scenes of determination in the middle of a major health crisis stem from a simple truth: marriage may be important everywhere, but in the middle east LOC it often cannot wait.in most arab NORP countries, marriage confers independence, the right to live together, cash gifts, a culturally approved sex life and, for women, heightened status in societies still heavily tilted in favor of men.with virus infections in egypt GPE at the low end of the curve, about 3,900 CARDINAL cases for 100 million CARDINAL people, some wedding-goers seemed to believe they were invincible.“this pandemic can’t touch us,” a reveler named [redacted] said as his wedding party scrambled to take photos on a cairo GPE bridge at a moment when the police were absent. the groom, in a tuxedo and sneakers, posed with the bride, in a white dress. then everyone bundled into three CARDINAL cars and took off.president trump’s daily news briefings on the coronavirus outbreak are inflicting grave damage on his political standing, republicans NORP believe, and his recent remarks about combating the virus with sunlight and disinfectant were a breaking point for a number of senior party officials. new surveys show mr. [ PERSON redacted] trailing significantly in battleground states like michigan GPE and pennsylvania GPE , and he is even narrowly behind in must-win florida GPE . mr. [redacted] ’s suggestion that an injection of disinfectant could help combat the coronavirus prompted warnings on friday DATE from health officials across the country, as well as the makers of clorox and lysol and several fox news personalities.the white house ORG spent much of friday DATE trying to walk back mr. [redacted] ’s remarks, which he made at thursday DATE ’s press briefing. vice president [redacted] , the head of the white house coronavirus task force ORG , abruptly ended friday DATE ’s daily DATE briefing shortly after it began, and the president took no questions. now, mr. [redacted] ’s advisers are encouraging him to skip the daily DATE briefings or field fewer questions from the reporters, and mr. [redacted] himself said on twitter on saturday DATE that they were not in his best interest.[redacted] is the purpose of having white house news conferences ORG when the lamestream media asks nothing but hostile questions, & then refuses to report the truth or facts accurately,” mr. [redacted] said on twitter. “they get record ratings, & the american NORP people get nothing but fake news. not worth the time & effort!”here ORG ’s what else is happening in the u.s. GPE : as states begin allowing businesses to reopen, there is uncertainty around how a gradual restart to the economy would work because of interconnected supply chains. and if states reopen their economies too quickly that could lead to a renewed outbreak.governors deciding about opening their economies continue to be hampered by a shortage of testing capacity, leaving them without the information that public health experts say is needed to track outbreaks and contain them. testing capacity remains nowhere near the level mr. [redacted] suggests it is, and governors, public health officials and hospital executives say they are still scrambling — and competing with one another — to procure the equipment they need. the u.s. GPE conducted about 1.2 million CARDINAL tests in a week DATE , but experts say that is still not enough.two antimalarial drugs — chloroquine and hydroxychloroquine — promoted by mr. [redacted] as effective against the coronavirus were being prescribed at more than six CARDINAL times the normal rate during the second week of april DATE , a data analysis by the new york times ORG shows. on friday DATE , the food and drug administration ORG warned against using the drugs outside a hospital setting or clinical trial because they could lead to serious heart rhythm problems in some coronavirus patients.john houghton, a climate scientist and leading figure in the united nations ORG panel that brought the threat of climate change to the world’s attention and received a nobel prize WORK_OF_ART , died on april 15 DATE in dolgellau GPE , wales. he was [redacted] cause was complications of the novel coronavirus, according to his granddaughter [redacted] , who announced the death, at a hospital, on twitter.a CARDINAL key participant in the united nations intergovernmental ORG panel on climate change, dr. [redacted] was the lead editor of the organization’s first ORDINAL three CARDINAL reports, issued in 1990 DATE , 1995 DATE and 2001 DATE . with each report, the evidence underpinning global warming and the role humans play in causing it grew more ineluctable, and the calls for international action became more pressing. the group received the 2007 DATE nobel peace prize jointly with [redacted] , the former vice president and climate campaigner.speaking about climate change in 1994 DATE , dr. [redacted] said that delay served no one. “we should start to do what we can do now and also begin to plan to do more,” he said, and “not wait 10 or 20 years DATE till things are more clear.” read the full obituary.with a population of about one million CARDINAL people and an area of 9,000 square miles QUANTITY , djibouti GPE is one CARDINAL of africa LOC ’s smallest countries. but this week DATE the horn of africa LOC nation was listed as having the highest prevalence of coronavirus cases, 986 CARDINAL , in africa.the figure reflects mass coronavirus testing in the country. but officials have also spoken of people not adhering to social distancing and hygiene rules.the state has shut its borders, suspended international flights, and closed schools and all places of worship.“what we are asking of you is to save yourselves, to save your siblings, your mothers and fathers and the old people,” president [redacted] said in a recent televised speech. “i ask you to stay at home.”djibouti, at the southern entrance to the red sea LOC , has taken advantage of its location at a busy shipping route and its relative stability in a volatile region to increase its geostrategic relevance. it is home to several foreign military bases, including one CARDINAL of the united states’ GPE largest foreign installations and china GPE ’s first ORDINAL overseas military base. as the coronavirus has spread, these military installations have heightened their safety measures.on ORG april 23 DATE , maj. gen. [redacted] , commander of the combined joint task force horn of africa LOC , declared a public health emergency for the u.s. GPE personnel under his authority in djibouti GPE . “combating covid-19 is my top priority,” he said in a statement, referring to the disease caused by the virus. “by declaring a public health emergency, it keeps our forces, and those of our host nation partner, as healthy and as safe as possible.”a park in okinawa city GPE , japan GPE , has mowed down sprawling lily fields that usually draw thousands CARDINAL of people, in an effort to prevent visitors from gathering and spreading the coronavirus.fears of the virus and a nationwide state of emergency declared this month DATE did not deter people from visiting the okinawa comprehensive athletic park, where its lilies were approaching full bloom. in response, the park clipped 10,000 CARDINAL of its 16,000 CARDINAL lilies on friday DATE .“our staff spent a whole year DATE growing them,” seiji fukushima, the park’s director, said on saturday DATE . “they were crying as they cut them off.”despite the emergency declarations this month DATE , many residents across the country still visited beaches, parks and restaurants, raising concerns about its measures to curb the outbreak. mr. [redacted] said many service members of the u.s. GPE military bases in okinawa prefecture had visited or jogged in the park despite social distancing rules, and residents had complained that many of them did not wear masks.the flowers are usually harvested in mid-may DATE , when bulbs are collected and stored for planting later. the park said that the cropped lilies had been distributed to people and that it would use the opportunity to improve its soil this year.as of saturday DATE , japan GPE had more than 13,500 CARDINAL confirmed coronavirus cases and 341 CARDINAL deaths.in israel GPE , where nearly everyone has someone to mourn from wars and continuing conflicts, memorial day — which is observed from monday DATE at sundown until tuesday DATE at sundown — ordinarily draws hundreds of thousands CARDINAL to national cemeteries. but fears that crowds could spread the coronavirus have prompted the government to plead with people to stay away.“it causes me immense pain that i won’t be with my brother on memorial day DATE , but i know the right thing is to stay home,” said [redacted] , 72 DATE , referring to her sibling, [redacted] , who was killed in the wake of a conflict between israel GPE and syria GPE in 1974 DATE . “cemeteries get very crowded every year DATE . it’s simply too risky to go now.”defense minister [redacted] said at a news conference that observing memorial day as in past years DATE would create “a coronavirus ticking time bomb.” about one and a half million CARDINAL israelis NORP usually visit burial grounds across the country during the holiday, he said.some israelis NORP , however, have vowed to go to the cemeteries, arguing that they would not threaten public health as long as they maintain social distancing measures.[redacted] family and i will go,” said [redacted] , 64 DATE , whose son rafanel was killed in conflict between israel GPE and the lebanese NORP militant group hezbollah ORG in 2006 DATE . “ this day DATE is so important to us.”while the government decided that it would not permit israelis NORP to go to cemeteries, the police will not use force to stop them, officials have said.israel had recorded more than 15,000 CARDINAL cases of the virus as of saturday DATE , and nearly 200 CARDINAL deaths.vanuatu, a pacific island LOC nation of 300,000 CARDINAL people, gave sports fans worldwide what they’d been craving on saturday DATE : something to watch, live, with the outcome unknown.cricket may not be everyone ’s cup of tea EVENT , but the vanuatu cricket association ORG livestreamed its women’s super league final, inviting sports fans everywhere to take a break from the recorded footage that many have had to settle for during the pandemic.“we thought it’s our duty to provide the world with some live sport,” said [redacted] , the chief executive of the vanuatu cricket association ORG and a former player for the australian national team ORG . “it’s one of the only live sports around the world at the moment. we can showcase a bit of cricket for everyone who is in lockdown.”vanuatu, like many other small pacific nations, has managed to keep the coronavirus from spreading, or even arriving, if official figures are correct. the country went into lockdown late last month DATE as a precaution. after it was hit by a major cyclone on april 6 DATE , the lockdown was lifted so that people could recover and rebuild.during the match on saturday DATE , small crowds of fans could be seen surrounding the pitch, standing or sitting a few feet QUANTITY apart, clearly enjoying the sight. comments on the cricket association’s facebook page, where the livestream was shown, thanked vanuatu for sharing.president trump has promised in a tweet to provide ventilators to indonesia GPE , where a rising number of coronavirus cases threatens to overwhelm the country’s poorly equipped and understaffed health care system.“just spoke to my friend, president [redacted] of the republic of indonesia GPE ,” mr. [redacted] wrote on friday DATE . “asking for ventilators, which we will provide. great cooperation between us!”in ORG reply, mr. joko’s ORG spokesman, [redacted] , tweeted on saturday DATE , “thank you very much for great cooperation between the usa and the republic of indonesia mr GPE . [redacted] .” indonesia GPE , with a population of 270 million CARDINAL , is the world’s fourth ORDINAL largest country but has only about 8,400 CARDINAL ventilators to help patients with the coronavirus, which has spread to all 34 CARDINAL provinces.indonesia has reported 720 CARDINAL deaths from the coronavirus, the second ORDINAL highest toll in east asia LOC after china GPE . but some officials say many more deaths have gone unreported.mr GPE . trump also said the united states GPE would send ventilators to three CARDINAL latin american NORP countries — ecuador GPE , el salvador GPE and honduras GPE — that are reeling from the pandemic. he did not say how many ventilators would be sent to any of the four CARDINAL countries or when they would arrive.ecuador’s largest city, guayaquil, has been especially hard hit. hospitals and clinics have been so overwhelmed that they have been unable to treat some patients. bodies have been found abandoned on sidewalks and slumped in wheelchairs.the honduran NORP president, [redacted] hernández, also spoke with mr. [ PERSON redacted] and requested help with ventilators and testing. he said he had also asked for assistance in securing debt relief for poor countries and financial aid from international lenders.in a tweet on friday DATE evening TIME about his conversation with the honduran NORP president, mr. [ PERSON redacted] said, “we work closely together on the southern border. will be helping him with his request for ventilators and testing.”reporting was contributed by lara jakes PERSON , [redacted] , [redacted] , [redacted] , dera menra sijabat, vikas bajaj, [redacted] , tiffany may, [redacted] , kirk semple, [redacted] , [redacted] , [redacted] , [redacted] , tess felder, [redacted] , [redacted] , [redacted] , [redacted] , [redacted] , [redacted] , [redacted] , [redacted] , [redacted] , [redacted] , [redacted] , [redacted] , [redacted] , [redacted] , abdi [redacted] , [redacted] , [redacted] , letícia casado ORG , [redacted] and [redacted] . [redacted] contributed research.updated april 11 DATE , 2020this is a difficult question, because a lot depends on how well the virus is contained. a better question might be: “how will we know when to reopen the country?” in an american enterprise institute ORG report, [redacted] , [redacted] , [redacted] , [redacted] and [redacted] staked out four CARDINAL goal posts for recovery: hospitals in the state must be able to safely treat all patients requiring hospitalization, without resorting to crisis standards of care; the state needs to be able to at least test everyone who has symptoms; the state is able to conduct monitoring of confirmed cases and contacts; and there must be a sustained reduction in cases for at least 14 CARDINAL days.the times neediest cases fund has started a special campaign to help those who have been affected, which accepts donations here. charity navigator, which evaluates charities using a numbers-based system, has a running list of nonprofits working in communities affected by the outbreak. you can give blood through the american red cross ORG , and world central kitchen has stepped in to distribute meals in major cities. more than 30,000 CARDINAL coronavirus-related gofundme fund-raisers have started in the past few weeks DATE . (the sheer number of fund-raisers means more of them are likely to fail to meet their goal, though.)if GPE you’ve been exposed to the coronavirus or think you have, and have a fever or symptoms like a cough or difficulty breathing, call a doctor. they should give you advice on whether you should be tested, how to get tested, and how to seek medical treatment without potentially infecting or exposing others.the c.d.c. has recommended that all americans NORP wear cloth masks if they go out in public. this is a shift in federal guidance reflecting new concerns that the coronavirus is being spread by infected people who have no symptoms. until now, the c.d.c. GPE , like the w.h.o., has advised that ordinary people don’t need to wear masks unless they are sick and coughing. part of the reason was to preserve medical-grade masks for health care workers who desperately need them at a time when they are in continuously short supply. masks don’t replace hand washing and social [redacted] you’re sick and you think you’ve been exposed to the new coronavirus, the c.d.c. recommends that you call your healthcare provider and explain your symptoms and fears. they will decide if you need to be tested. keep in mind that there’s a chance — because of a lack of testing kits or because you’re asymptomatic, for instance — you won’t be able to get [redacted] seems to spread very easily from person to person, especially in homes, hospitals and other confined spaces. the pathogen can be carried on tiny respiratory droplets that fall as they are coughed or sneezed out. it may also be transmitted when we touch a contaminated surface and then touch our face.no. clinical trials are underway in the united states GPE , china GPE and europe LOC . but american NORP officials and pharmaceutical executives have said that a vaccine remains at least 12 CARDINAL to 18 months away.unlike the flu, there is no known treatment or vaccine, and little is known about this particular virus so far. it seems to be more lethal than the flu, but the numbers are still uncertain. and it hits the elderly and those with underlying conditions — not just those with respiratory diseases — particularly hard.if the family member doesn’t need hospitalization and can be cared for at home, you should help him or her with basic needs and monitor the symptoms, while also keeping as much distance as possible, according to guidelines issued by the c.d.c. if there’s space, the sick family member should stay in a separate room and use a separate bathroom. if masks are available, both the sick person and the caregiver should wear them when the caregiver enters the room. make sure not to share any dishes or other household items and to regularly clean surfaces like counters, doorknobs, toilets and tables. don’t forget to wash your hands frequently.plan two weeks DATE of meals if possible. but people should not hoard food or supplies. despite the empty shelves, the supply chain remains strong. and remember to wipe the handle of the grocery cart with a disinfecting wipe and wash your hands as soon as you get home.yes, but make sure you keep six feet QUANTITY of distance between you and people who don’t live in your home. even if you just hang out in a park, rather than go for a jog or a walk, getting some fresh air, and hopefully sunshine, is a good idea.that’s not a good idea. even if you’re retired, having a balanced portfolio of stocks and bonds so that your money keeps up with inflation, or even grows, makes sense. but retirees may want to think about having enough cash set aside for a year’s worth of living expenses and big payments needed over the next five years.watching DATE your balance go up and down can be scary. you may be wondering if you should decrease your contributions — don’t! if your employer matches any part of your contributions, make sure you’re at least saving as much as you can to get that “free money.”advertisement
In [17]:
displacy.render(docs , style = 'dep', jupyter = True, options = {'distance': 100})
advertisementbelarus, PROPN led VERB by ADP a DET virus- NOUN denying VERB autocrat, NOUN has AUX imposed VERB no DET lockdowns. NOUN brazil PROPN ’s PART leader, NOUN who PRON has AUX played VERB down ADP the DET virus, NOUN faces VERB an DET uncertain ADJ future.right NOUN nowafter NOUN a DET backlash NOUN to ADP his PRON suggestion NOUN that SCONJ injecting VERB disinfectants NOUN could AUX combat VERB the DET coronavirus, NOUN president [ PROPN redacted] VERB indicates VERB his PRON daily ADJ white PROPN house NOUN briefings NOUN are AUX no ADV longer ADV worth ADJ his PRON time.many NOUN americans PROPN who PRON had AUX assumed VERB they PRON could AUX stay VERB overseas ADV till SCONJ the DET pandemic NOUN ebbed VERB now ADV face VERB an DET unnerving ADJ choice: NOUN either CCONJ prepare VERB for ADP the DET possibility NOUN of ADP being AUX infected VERB and CCONJ treated VERB in ADP foreign ADJ hospitals, NOUN or CCONJ risk NOUN infection NOUN on ADP the DET way NOUN back ADV to ADP the DET united PROPN states.the PROPN u.s. PROPN state PROPN department, PROPN warning VERB that SCONJ commercial ADJ flights NOUN from ADP overseas ADJ may AUX end VERB in ADP the DET coming VERB days, NOUN is AUX urging VERB americans PROPN abroad ADV to PART grab VERB any DET opportunity NOUN to PART board VERB them.flights NOUN organized VERB by ADP the DET state PROPN department NOUN that PRON have AUX so ADV far ADV returned VERB 65,000 NUM americans PROPN from ADP across ADP the DET world NOUN are AUX winding VERB down. ADP some DET continue VERB in ADP limited ADJ numbers, NOUN in ADP areas NOUN like SCONJ the DET indian ADJ subcontinent NOUN and CCONJ africa. PROPN and CCONJ american ADJ diplomats NOUN have AUX helped VERB commercial ADJ airlines NOUN cut VERB through ADP foreign ADJ regulations NOUN that PRON have AUX restricted VERB flights NOUN in ADP and CCONJ out SCONJ of ADP some DET countries NOUN during ADP the DET pandemic. NOUN but CCONJ there PRON still ADV are AUX at ADP least ADV 17,000 NUM american ADJ citizens NOUN or CCONJ legal ADJ residents NOUN abroad ADV who PRON have AUX indicated VERB they PRON need VERB help.officials NOUN are AUX suggesting VERB that SCONJ the DET risk NOUN of ADP contracting VERB the DET virus NOUN from ADP traveling VERB on ADP any DET kind NOUN of ADP flight NOUN is AUX offset VERB by ADP disparities NOUN in ADP health NOUN care NOUN systems. NOUN “you PRON can AUX come VERB back ADV to ADP the DET united PROPN states PROPN where ADV you PRON are AUX a DET citizen NOUN and CCONJ you PRON have AUX access NOUN to ADP health NOUN care NOUN and CCONJ you PRON have AUX access NOUN to ADP an DET infrastructure NOUN that PRON is AUX still ADV intact,” ADJ said VERB dr. [ PROPN redacted] , VERB the DET state PROPN department PROPN ’s PROPN deputy ADJ chief ADJ medical ADJ officer. NOUN but CCONJ by ADP hunkering VERB down, ADP in ADP developing VERB countries NOUN in ADP particular, ADJ where ADV the DET virus NOUN has AUX yet ADV to PART peak, “ VERB you PRON will AUX be AUX an DET american ADJ citizen NOUN in ADP a DET foreign ADJ country NOUN that PRON did AUX n’t PART have AUX great ADJ infrastructure NOUN to PART begin VERB with. ADP ”and PROPN students NOUN studying VERB abroad ADV in ADP the DET united PROPN states PROPN have AUX been AUX stranded VERB with ADP dwindling VERB financial ADJ resources.many NOUN of ADP the DET more ADJ than SCONJ a DET million NUM international ADJ students NOUN who PRON left VERB their PRON home NOUN countries NOUN to PART study VERB in ADP the DET united PROPN states PROPN had AUX been AUX living VERB in ADP college NOUN dorms. NOUN they PRON were AUX left VERB to PART find VERB new ADJ housing NOUN after ADP campuses NOUN shutdown. VERB a DET substantial ADJ number NOUN of ADP them PRON are AUX also ADV watching VERB their PRON financial ADJ lives NOUN fall VERB apart. ADV visa NOUN restrictions NOUN prevent VERB them PRON from ADP working VERB off ADP campus, NOUN but CCONJ campuses NOUN are AUX now ADV closed. ADJ and CCONJ while SCONJ some DET come VERB from ADP families NOUN wealthy ADJ enough ADV to PART pay VERB for ADP their PRON housing NOUN or CCONJ whisk VERB them PRON home, ADV many ADJ others NOUN had AUX already ADV been AUX struggling VERB to ADP cobble ADJ together ADP tuition NOUN fees, NOUN which PRON tend VERB to PART be AUX much ADV higher ADJ for ADP international ADJ students. NOUN and CCONJ many ADJ currencies’ NOUN values NOUN have AUX collapsed VERB relative ADJ to ADP the DET u.s. PROPN dollar.some PROPN international ADJ students NOUN say VERB they PRON have AUX had VERB to PART turn VERB to ADP food NOUN banks. NOUN others NOUN are AUX couch NOUN surfing VERB in ADP the DET friends’ NOUN homes, NOUN but CCONJ do AUX n’t PART know VERB how ADV long ADV they PRON will AUX be AUX welcome. ADJ those DET who PRON were AUX able ADJ to PART fly VERB home ADV before ADP international ADJ borders NOUN closed VERB are AUX now ADV not PART sure ADJ they PRON will AUX be AUX able ADJ to PART come VERB back ADV to PART finish VERB their PRON studies.prime PROPN minister [ PROPN redacted] VERB said VERB on ADP saturday PROPN evening NOUN that SCONJ spaniards NOUN would AUX be AUX allowed VERB outdoors ADV to PART take VERB a DET stroll NOUN or CCONJ exercise NOUN as SCONJ of ADP may PROPN 2 NUM if SCONJ the DET country NOUN ’s PART coronavirus PROPN numbers NOUN continued VERB to PART improve VERB over ADP the DET coming VERB week.in NOUN a DET televised VERB address, NOUN mr. [ PROPN redacted] VERB did AUX n’t PART detail VERB what PRON limits NOUN to ADP sports NOUN would AUX still ADV apply. VERB but CCONJ his PRON announcement NOUN came VERB as SCONJ spanish ADJ children NOUN prepared VERB to PART go VERB outdoors ADV on ADP sunday PROPN for ADP the DET first ADJ time NOUN since SCONJ the DET lockdown NOUN came VERB into ADP force NOUN in ADP mid- NOUN march. PROPN they PRON will AUX be AUX able ADJ to PART stroll VERB for ADP one NUM hour NOUN within ADP one NUM kilometer NOUN of ADP their PRON homes NOUN when ADV accompanied VERB by ADP an DET adult.mr. [ PROPN redacted] VERB also ADV said VERB that SCONJ the DET easing VERB spain PROPN ’s PROPN lockdown NOUN would AUX be “ VERB gradual ADJ and CCONJ asymmetrical, ADJ but CCONJ coordinated.” VERB some DET regional ADJ and CCONJ local ADJ leaders NOUN ague VERB that SCONJ their PRON areas NOUN have AUX already ADV contained VERB the DET epidemic, NOUN and CCONJ they PRON are AUX pushing VERB to PART reduce VERB lockdown ADJ measures NOUN locally ADV ahead ADV of ADP any DET national ADJ easing.spain NOUN reported VERB a DET slight ADJ uptick NOUN in ADP its PRON daily ADJ death NOUN toll NOUN with ADP 378 NUM dead ADJ on ADP saturday, PROPN compared VERB to ADP 367 NUM on ADP friday. PROPN but CCONJ the DET country NOUN crossed VERB a DET significant ADJ milestone NOUN this DET week NOUN by ADP registering VERB more ADJ hospital NOUN recoveries NOUN than SCONJ new ADJ coronavirus PROPN cases.the PROPN country PROPN ’s PROPN lockdown NOUN has AUX been AUX extended VERB until ADP may PROPN 9. NUM but CCONJ some DET local ADJ and CCONJ regional ADJ politicians NOUN have AUX stressed VERB that SCONJ the DET daily ADJ number NOUN of ADP coronavirus PROPN fatalities NOUN has AUX fallen VERB to ADP below ADP 10 NUM a DET day NOUN in ADP half NOUN of ADP spain PROPN ’s PART 17 NUM regions. NOUN the DET push NOUN for ADP local ADJ easing NOUN of ADP restrictions NOUN has AUX particularly ADV come VERB from ADP islands NOUN as ADV well ADV as SCONJ southern ADJ regions NOUN whose PRON hospitals NOUN were AUX never ADV overwhelmed ADJ with ADP covid-19 PROPN patients.as PROPN brazil PROPN ’s PROPN coronavirus PROPN contagion NOUN accelerated VERB this DET past ADJ week, NOUN with ADP nearly ADV 53,000 NUM confirmed VERB cases NOUN and CCONJ 3,670 NUM deaths, NOUN speculation NOUN intensified VERB over ADP how ADV much ADV longer ADJ president [ NOUN redacted] VERB would AUX last VERB in ADP power.in X recent ADJ weeks, NOUN mr. [ PROPN redacted] VERB ’s PROPN strikingly ADV dismissive ADJ response NOUN to ADP the DET coronavirus PROPN pandemic, NOUN which PRON he PRON has AUX called VERB a “ DET measly ADV cold” ADJ that PRON can VERB not PART be AUX allowed VERB to PART throttle VERB economic ADJ growth, NOUN generated VERB calls NOUN for ADP impeachment NOUN at ADP home NOUN and CCONJ bewilderment NOUN abroad.he PROPN was AUX already ADV struggling VERB to PART govern VERB effectively ADV when, ADV on ADP friday, PROPN his PRON star NOUN cabinet NOUN minister PROPN resigned VERB with ADP an DET explosive ADJ speech NOUN that PRON basically ADV called VERB his PRON soon- ADV to- PART be AUX former ADJ boss NOUN a DET criminal.mr. PROPN bolsonaro PROPN became VERB a DET president NOUN without ADP a DET political ADJ party NOUN in ADP november, PROPN after ADP falling VERB out ADP with ADP leaders NOUN of ADP the DET social PROPN liberal PROPN party, PROPN which PRON had AUX backed VERB his PRON presidential ADJ bid. NOUN and CCONJ several ADJ political ADJ allies — NOUN including VERB two NUM of ADP mr. [ PROPN redacted] VERB ’s NOUN sons — NOUN are AUX under ADP investigation NOUN in ADP a DET series NOUN of ADP criminal ADJ and CCONJ legislative ADJ inquiries.given NOUN those DET challenges, NOUN which PRON have AUX left VERB mr. [ PROPN redacted] VERB deeply ADV isolated, VERB the DET dramatic ADJ exit NOUN of ADP his PRON justice NOUN minister PROPN was AUX seen VERB by ADP critics NOUN and CCONJ supporters NOUN of ADP the DET president NOUN as SCONJ a DET potentially ADV destructive ADJ blow NOUN to ADP his PRON grip NOUN on ADP power NOUN during ADP a DET public ADJ health NOUN crisis NOUN and CCONJ a DET recession.and, NOUN while SCONJ several ADJ latin ADJ american ADJ leaders NOUN have AUX seen VERB a DET bounce NOUN in ADP public ADJ opinion NOUN as SCONJ they PRON imposed VERB strict ADJ quarantine NOUN measures NOUN to PART curb VERB the DET spread NOUN of ADP the DET coronavirus, PROPN mr. [ PROPN redacted] VERB ’s PROPN popularity NOUN has AUX dropped VERB amid ADP what PRON critics NOUN call VERB a DET flailing NOUN response. NOUN as SCONJ he PRON headed VERB off ADP the DET ice NOUN after ADP playing VERB a DET hockey NOUN game NOUN in ADP an DET amateur ADJ tournament NOUN in ADP late ADJ march, PROPN the DET leader NOUN of ADP belarus PROPN brushed VERB aside ADV reporters’ NOUN anxious ADJ questions NOUN about ADP the DET coronavirus PROPN pandemic. NOUN “there PRON are AUX no DET viruses NOUN here,” ADV said VERB the DET belarusian ADJ president, [ NOUN redacted] , VERB gesturing VERB to ADP the DET crowded ADJ arena. “ NOUN do AUX you PRON see VERB any DET of ADP them PRON flying VERB around? ADV i PRON do AUX n’t PART see VERB them PRON either.[redacted] VERB a DET time NOUN when ADV some DET countries, NOUN like SCONJ germany PROPN and CCONJ denmark, PROPN having VERB tamped VERB down ADP the DET initial ADJ outbreak NOUN of ADP the DET virus, NOUN are AUX experimenting VERB with ADP cautious ADJ openings NOUN of ADP businesses NOUN and CCONJ schools, NOUN belarus PROPN is AUX an DET outlier. NOUN it PRON never ADV imposed VERB any DET restrictions NOUN at ADP all.restaurants, NOUN coffee NOUN shops NOUN and CCONJ movie NOUN theaters NOUN remain VERB open. ADJ last ADJ weekend, NOUN churches NOUN were AUX packed VERB for ADP orthodox ADJ easter. NOUN professional ADJ soccer NOUN is AUX in ADP full ADJ swing, NOUN though SCONJ the DET roaring VERB crowds NOUN of ADP earlier ADV this DET month NOUN have AUX thinned. VERB in ADP the DET capital, NOUN minsk, PROPN the DET subways NOUN are AUX crowded. VERB most ADJ businesses NOUN require VERB workers NOUN to PART show VERB up.neither ADP the DET raw ADJ numbers NOUN of ADP infections, NOUN nearly ADV 9,000, NUM nor CCONJ the DET total ADJ deaths, NOUN 63, NUM suggest VERB that SCONJ belarus PROPN ’s PROPN epidemic NOUN is AUX grossly ADV disproportionate, ADJ though SCONJ ukraine PROPN with ADP four NUM times NOUN the DET population NOUN has AUX fewer ADJ reported VERB cases.however, NOUN few ADJ people NOUN believe VERB the DET official ADJ tallies; NOUN there PRON is AUX some DET evidence NOUN that SCONJ the DET true ADJ numbers NOUN are AUX being AUX suppressed.without ADV a DET free ADJ press NOUN or CCONJ any DET viable ADJ opposition NOUN parties, NOUN belarusians PROPN have AUX little ADJ recourse NOUN to PART challenge VERB the DET response. NOUN caught VERB in ADP the DET grip NOUN of ADP an DET autocrat NOUN whom PRON critics NOUN are AUX calling VERB one NUM of ADP the DET world NOUN ’s PART foremost ADJ virus NOUN deniers, NOUN they PRON have AUX little ADJ choice NOUN but SCONJ to PART accept VERB official ADJ policy: NOUN the DET economy NOUN will AUX keep VERB chugging VERB along, ADV whatever PRON the DET cost NOUN in ADP human ADJ lives.the ADJ metropolitan PROPN opera PROPN ’s PROPN at- ADP home NOUN gala — NOUN a DET worldwide ADJ relay NOUN of ADP live ADJ streamed ADJ performances NOUN that, PRON in ADP contrast NOUN to ADP opera PROPN ’s PROPN usual ADJ grandeur, NOUN was AUX filmed VERB using VERB only ADJ household NOUN devices — NOUN was AUX presented VERB at ADP metopera.org PROPN and CCONJ will AUX remain VERB available ADJ until ADP sunday PROPN evening NOUN eastern ADJ time. NOUN it PRON has AUX an DET only- ADJ in- ADP opera NOUN level NOUN of ADP aspiration NOUN and CCONJ difficulty: NOUN a DET roster NOUN of ADP more ADJ than SCONJ 40 NUM of ADP the DET company NOUN ’s PART starriest ADJ singers, NOUN plus CCONJ members NOUN of ADP the DET orchestra NOUN and CCONJ chorus, NOUN performing VERB live ADV across ADP nine NUM time NOUN zones. NOUN among ADP them PRON are AUX lisette PROPN oropesa, PROPN in ADP baton PROPN rouge, PROPN la.; [ PROPN redacted] , VERB in ADP vienna; PROPN and CCONJ piotr PROPN beczala, PROPN in ADP what PRON he PRON described VERB to [ ADP redacted] , VERB the DET met PROPN ’s PROPN general ADJ manager, NOUN as SCONJ a DET village NOUN at ADP the DET end NOUN of ADP the DET earth NOUN in ADP poland.the PROPN met VERB halted VERB performances NOUN on ADP march PROPN 12 NUM in ADP response NOUN to ADP the DET coronavirus PROPN pandemic — NOUN and CCONJ eventually ADV canceled VERB the DET remainder NOUN of ADP its PRON season. NOUN mr. [ PROPN redacted] — VERB who PRON hosted VERB from ADP new PROPN york PROPN along ADP with ADP yannick ADJ nézet- PROPN séguin, PROPN the DET met PROPN ’s PROPN music NOUN director, NOUN who PRON is AUX in ADP montreal — PROPN said VERB that SCONJ the DET idea NOUN came VERB about ADP because “ ADP i PRON am AUX determined ADJ to PART keep VERB the DET met NOUN in ADP the DET consciousness NOUN of ADP the DET broader ADJ public, NOUN and CCONJ i PRON am AUX determined ADJ to PART use VERB any DET possible ADJ means NOUN to PART do AUX that. DET ”since PROPN the DET opera PROPN house PROPN went VERB dark, ADJ it PRON has AUX posted VERB a DET free ADJ stream NOUN from ADP its PRON vast ADJ met VERB opera NOUN on ADP demand PROPN library PROPN every DET night. ( NOUN mr. [ PROPN redacted] VERB said VERB that SCONJ in ADP the DET past ADJ five NUM weeks, NOUN the DET number NOUN of ADP paid VERB subscribers NOUN to ADP that DET on- ADP demand NOUN service NOUN has AUX doubled, VERB to ADP 30,000.) NUM each DET stream NOUN is AUX accompanied VERB by ADP a “ DET donate NOUN now” ADV button; NOUN the DET at- ADP home NOUN gala NOUN has AUX one, NUM too, ADV though SCONJ mr. [ PROPN redacted] VERB was AUX quick ADJ to PART emphasize VERB that SCONJ this DET is AUX not “ ADV a DET pbs PROPN telethon. PROPN ”as X the DET drumbeat NOUN grows VERB for ADP transparency NOUN about ADP the DET secretive ADJ group NOUN guiding VERB britain PROPN ’s PART response NOUN to ADP the DET coronavirus — NOUN the DET scientific ADJ advisory ADJ group NOUN for ADP emergencies, NOUN or CCONJ sage — NOUN the DET government NOUN acknowledged VERB that SCONJ prime PROPN minister [ PROPN redacted] VERB ’s PROPN most ADV senior ADJ aide, NOUN dominic NOUN cummings, NOUN has AUX listened VERB in ADP on ADP the DET panel NOUN ’s NOUN meetings.but PROPN a DET spokesman NOUN for ADP downing VERB street PROPN said VERB on ADP saturday PROPN that SCONJ mr. [ PROPN redacted] VERB was AUX not PART a DET member NOUN of ADP the DET group NOUN and CCONJ did AUX not PART influence VERB policy. NOUN “no. X 10 NUM officials NOUN and CCONJ officials NOUN from ADP other ADJ departments NOUN attend/ VERB dial VERB in ADP to PART sage VERB to PART listen VERB to ADP its PRON discussions NOUN and CCONJ occasionally ADV ask VERB questions, NOUN which PRON is AUX essential ADJ at ADP a DET time NOUN the DET government NOUN is AUX dealing VERB with ADP a DET global ADJ pandemic,” NOUN downing PROPN street PROPN said VERB in ADP a DET statement.on PROPN saturday PROPN britain PROPN ’s PROPN department PROPN of ADP health PROPN and CCONJ social ADJ care NOUN said VERB that SCONJ the DET number NOUN of ADP deaths NOUN in ADP the DET country NOUN had AUX surpassed VERB 20,000 NUM and CCONJ that SCONJ the DET number NOUN of ADP confirmed VERB cases NOUN is AUX nearing VERB 150,000. NUM britain PROPN is AUX the DET fifth ADJ country NOUN to PART record VERB that SCONJ many ADJ deaths, NOUN though SCONJ its PRON tally NOUN does AUX not PART include VERB deaths NOUN outside ADP of ADP hospitals. “ NOUN it PRON ’s VERB a DET very ADV sad ADJ day NOUN for ADP the DET nation; NOUN 20,000 NUM deaths NOUN is AUX clearly ADV 20,000 NUM too ADV many,” [ ADJ redacted] , VERB the DET medical ADJ director NOUN of ADP the DET national PROPN health PROPN service PROPN in ADP england, PROPN said VERB on ADP saturday PROPN at ADP a DET news NOUN conference. NOUN opposition NOUN leaders NOUN have AUX demanded VERB more ADJ transparency NOUN from ADP the DET group, NOUN whose PRON members NOUN are AUX largely ADV anonymous ADJ and CCONJ whose PRON meetings NOUN are AUX held VERB in ADP private. ADJ the DET british ADJ government NOUN says VERB it PRON is AUX being “ VERB guided VERB by ADP the DET science” NOUN coming VERB from ADP the DET group, NOUN but CCONJ critics NOUN say VERB the DET science NOUN is AUX unclear.jonathan PROPN ashworth, PROPN who PRON oversees VERB the DET opposition NOUN the DET labour PROPN party PROPN ’s PROPN health NOUN policy, NOUN called VERB on ADP the DET government NOUN to PART publish VERB the DET minutes NOUN of ADP the DET panel NOUN ’s PROPN meetings. “ NOUN we PRON need VERB to PART understand VERB whether SCONJ mr. [ PROPN redacted] VERB was AUX contributing VERB to ADP the DET debate NOUN or CCONJ influencing VERB the DET debate,” NOUN he PRON told VERB sky PROPN news NOUN on ADP saturday.the DET developments NOUN came VERB as SCONJ leaked VERB cabinet NOUN briefings NOUN to ADP the DET guardian NOUN newspaper NOUN indicated VERB that SCONJ ministers NOUN were AUX warned VERB last ADJ year NOUN that SCONJ britain PROPN risked VERB facing VERB an DET influenza- NOUN type NOUN outbreak NOUN and CCONJ that SCONJ the DET country NOUN needed VERB a DET robust ADJ plan NOUN to PART deal VERB with ADP it. PRON a DET possible ADJ pandemic NOUN was AUX at ADP the DET top NOUN of ADP a DET confidential ADJ annual ADJ national ADJ security NOUN risk NOUN assessment NOUN signed VERB off ADP by ADP the DET government NOUN ’s PART chief ADJ scientific ADJ adviser.in NOUN other ADJ developments NOUN in ADP britain: PROPN the DET government NOUN ’s PART website NOUN for ADP essential ADJ workers NOUN and CCONJ their PRON families NOUN to ADP book NOUN coronavirus PROPN tests NOUN reopened VERB on ADP saturday PROPN after ADP shutting VERB down ADP the DET day NOUN before ADV when ADV tens NOUN of ADP thousands NOUN of ADP requests NOUN flooded VERB it. PRON but CCONJ the DET maximum ADJ capacity NOUN had AUX been AUX reached VERB by ADP 8 NUM a.m. NOUN on ADP saturday, PROPN according VERB to ADP a DET message NOUN published VERB on ADP the DET website.the PUNCT defense PROPN ministry PROPN said VERB on ADP friday PROPN that SCONJ the DET country NOUN ’s PART armed ADJ forces NOUN would AUX be AUX given VERB insect ADJ repellent NOUN to PART protect VERB against ADP coronavirus PROPN infections, NOUN but CCONJ offered VERB no DET evidence NOUN that SCONJ the DET product. NOUN containing VERB a DET lemon NOUN eucalyptus NOUN oil NOUN extract, NOUN would AUX be AUX effective.a NUM 99-year- NUM old ADJ charity NOUN fund- NOUN raiser — [ NOUN redacted] , VERB who PRON is AUX also ADV a DET world PROPN war PROPN ii PROPN veteran — NOUN has AUX the DET country NOUN ’s PART no. NOUN 1 NUM song NOUN by ADP sales NOUN this DET week, NOUN according VERB to ADP the DET country NOUN ’s PART official ADJ charts NOUN company. NOUN like INTJ captain PROPN moore PROPN ’s PROPN other ADJ ventures, NOUN the DET single — ADJ a DET rendition NOUN of “ ADP you PRON ’ll VERB never ADV walk VERB alone,” ADJ featuring VERB the DET singer [ NOUN redacted] — VERB is AUX to PART raise VERB money NOUN for ADP health NOUN care NOUN charities NOUN during ADP the DET coronavirus PROPN crisis.the PROPN virus NOUN has AUX infected VERB more ADJ than SCONJ 2,837,000 NUM people NOUN in ADP at ADV least ADJ 177 NUM countries.the SYM governments NOUN of ADP the DET united PROPN states, PROPN france PROPN and CCONJ the DET netherlands NOUN are AUX funneling VERB more ADJ taxpayer NOUN dollars NOUN into ADP airlines NOUN to PART offset VERB the DET devastating ADJ fallout NOUN from ADP the DET coronavirus NOUN on ADP the DET global ADJ travel NOUN industry.the PUNCT u.s. PROPN treasury PROPN department PROPN said VERB on ADP saturday PROPN that SCONJ it PRON had AUX given VERB an DET additional ADJ $ SYM 9.5 NUM billion NUM to ADP american ADJ carriers NOUN looking VERB for ADP help NOUN to PART pay VERB employees. NOUN the DET funds, NOUN which PRON are AUX part NOUN of ADP the DET $ SYM 2.2 NUM trillion NUM stimulus PROPN package NOUN congress PROPN approved VERB last ADJ month, NOUN brings VERB the DET total ADJ aid NOUN to ADP the DET industry NOUN to ADP $ SYM 12.4 NUM billion.the PROPN department NOUN also ADV enabled VERB airlines NOUN to PART tap VERB into ADP another DET $ SYM 17 NUM billion NUM lawmakers NOUN set VERB aside ADV for ADP businesses NOUN considered VERB crucial ADJ to ADP national ADJ security. NOUN france PROPN and CCONJ the DET netherlands PROPN are AUX providing VERB a DET bailout NOUN of ADP 10 NUM billion NUM euros, NOUN about ADP $ SYM 10.8 NUM billion, NUM to PART salvage VERB air PROPN france- PROPN klm, PROPN one NUM of ADP europe PROPN ’s PART biggest ADJ airlines.air PROPN france- PROPN klm PROPN will AUX receive VERB a DET SYM 4 NUM billion NUM bank NOUN loan NOUN backed VERB by ADP the DET french ADJ state NOUN and CCONJ a DET SYM 3 NUM billion NUM direct ADJ government NOUN loan, NOUN france PROPN ’s PROPN finance PROPN minister, PROPN said VERB late ADJ friday. PROPN the DET dutch ADJ government NOUN said VERB it PRON would AUX provide VERB an DET additional ADJ NOUN 2 NUM billion NUM to PART SYM 4 NUM billion NUM in ADP public NOUN aid.the DET infusion NOUN falls VERB short ADV of ADP nationalizing VERB the DET airline, NOUN in ADP which PRON the DET french ADJ and CCONJ dutch ADJ states NOUN each DET own ADJ a DET 14 NUM percent NOUN share. NOUN the DET european PROPN commission — PROPN the DET executive ADJ branch NOUN of ADP the DET european PROPN union, PROPN which PRON has AUX thrown VERB out ADP restrictions NOUN on ADP state NOUN support NOUN because SCONJ of ADP the DET deep ADJ economic ADJ downturn — NOUN swiftly ADV approved VERB the DET bailout.the PROPN world PROPN health PROPN organization PROPN has AUX warned VERB against ADP using VERB coronavirus PROPN antibody NOUN tests NOUN as SCONJ a DET basis NOUN for ADP issuing “ VERB immunity NOUN passports” NOUN to PART allow VERB people NOUN to PART travel VERB or CCONJ return VERB to ADP work.laboratory ADJ tests NOUN that PRON detect VERB antibodies NOUN to ADP the DET coronavirus “ NOUN need VERB further ADJ validation NOUN to PART determine VERB their PRON accuracy NOUN and CCONJ reliability,” NOUN the DET global ADJ agency NOUN said VERB in ADP a DET statement NOUN on ADP friday. PROPN inaccurate ADJ tests NOUN may AUX falsely ADV label VERB people NOUN who PRON have AUX been AUX infected VERB as SCONJ negative, ADJ or CCONJ may AUX falsely ADV label VERB people NOUN who PRON have AUX not PART been AUX infected VERB as SCONJ positive, ADJ it PRON noted.countries VERB like SCONJ italy PROPN and CCONJ chile PROPN have AUX weighed VERB providing “ VERB immunity NOUN passports” NOUN to PART let VERB those DET people NOUN who PRON have AUX recovered VERB from ADP the DET virus NOUN return NOUN to ADP work, NOUN in ADP an DET effort NOUN to PART begin VERB easing VERB lockdown NOUN restrictions NOUN and CCONJ stem VERB the DET economic ADJ fallout.in NOUN the DET united PROPN states, PROPN scientists NOUN working VERB around ADP the DET clock NOUN in ADP shifts NOUN managed VERB to PART compare VERB 14 NUM antibody NOUN tests NOUN on ADP the DET market, NOUN and CCONJ the DET news NOUN was AUX n’t PART good. ADJ only ADV one NUM test NOUN delivered VERB no DET false ADJ positives — NOUN and CCONJ just ADV two NUM others NOUN did AUX well ADV 99 NUM percent NOUN of ADP the DET time.the PROPN w.h.o. PROPN said VERB it PRON supported VERB the DET testing NOUN of ADP medical ADJ workers NOUN to PART determine VERB whether SCONJ they PRON have AUX antibodies, NOUN as SCONJ that DET data NOUN can AUX add VERB to ADP the DET understanding NOUN of ADP how ADV the DET coronavirus NOUN behaves. VERB but CCONJ it PRON said VERB that SCONJ most ADV such ADJ tests NOUN currently “ ADV are AUX not PART designed VERB to PART determine VERB whether SCONJ those DET people NOUN are AUX immune ADJ to ADP secondary ADJ infections. NOUN ”the DET assessment NOUN came VERB as SCONJ the DET w.h.o. PROPN held VERB a DET virtual ADJ meeting NOUN on ADP friday PROPN in ADP which PRON global ADJ heads NOUN of ADP state NOUN vowed VERB to PART cooperate VERB on ADP coronavirus PROPN vaccine NOUN research NOUN and CCONJ treatments — NOUN though SCONJ neither CCONJ the DET united PROPN states PROPN nor CCONJ china PROPN joined VERB the DET initiative.although ADJ leaders NOUN like SCONJ chancellor [ PROPN redacted] VERB of ADP germany PROPN and CCONJ president [ PROPN redacted] VERB of ADP france PROPN were AUX vague ADJ in ADP their PRON pledges, NOUN the DET absence NOUN of ADP any DET u.s. PROPN representative NOUN at ADP the DET meeting NOUN was AUX the DET latest ADJ sign NOUN of ADP a DET withdrawal NOUN of ADP the DET world NOUN ’s PART biggest ADJ economy NOUN in ADP tackling VERB the DET coronavirus NOUN on ADP a DET global ADJ scale. NOUN migrants NOUN and CCONJ others NOUN sent VERB about ADV $ SYM 689 NUM billion NUM in ADP global ADJ remittances NOUN in ADP 2018, NUM according VERB to ADP the DET world PROPN bank — PROPN money NOUN that PRON relatives NOUN and CCONJ friends NOUN back ADV home ADV depend VERB on ADP to PART survive. VERB but CCONJ as SCONJ millions NOUN of ADP migrant ADJ workers NOUN see VERB their PRON hours NOUN cut VERB or CCONJ lose VERB their PRON jobs NOUN because SCONJ of ADP the DET economic ADJ slowdown NOUN from ADP the DET pandemic, NOUN the DET world PROPN bank PROPN said VERB this DET week NOUN that SCONJ global ADJ remittances NOUN were AUX projected VERB to PART plummet VERB about ADV 20 NUM percent NOUN this DET year, NOUN in “ ADP the DET sharpest ADJ decline NOUN in ADP recent ADJ history. NOUN ”and CCONJ that DET could AUX have AUX far- ADV reaching VERB effects NOUN in ADP some DET developing NOUN and CCONJ poorer ADJ nations NOUN like SCONJ mexico, PROPN which PRON was AUX the DET third- ADV largest ADJ recipient NOUN of ADP remittances NOUN in ADP 2018 — NUM after ADP india PROPN and CCONJ china, PROPN according VERB to ADP the DET world PROPN bank — PROPN and CCONJ the DET largest ADJ recipient NOUN of ADP money NOUN sent VERB from ADP the DET united PROPN states.amid PROPN the DET u.s. PROPN economic ADJ slowdown NOUN in ADP recent ADJ weeks, NOUN millions NOUN of ADP undocumented ADJ mexicans PROPN in ADP the DET united PROPN states, PROPN like SCONJ other ADJ immigrant ADJ populations, NOUN have AUX been AUX left VERB vulnerable ADJ without ADP job NOUN security NOUN and CCONJ unemployment NOUN benefits.a PROPN major ADJ decrease NOUN in ADP remittances NOUN could AUX cause VERB not PART just ADV economic ADJ duress, NOUN but CCONJ also ADV political ADJ and CCONJ social ADJ tension, NOUN said [ VERB redacted] , VERB who PRON teaches VERB international ADJ relations NOUN at ADP new PROPN york PROPN university. PROPN “i PROPN do AUX n’t PART think VERB governments NOUN want VERB to PART see VERB this DET money NOUN contract, NOUN because SCONJ it PRON functions VERB as SCONJ a DET sort NOUN of ADP de X facto X social ADJ welfare NOUN system,” NOUN said VERB mr. [ PROPN redacted] , VERB the DET author NOUN of “ ADP outsourcing VERB welfare,” NOUN a DET book NOUN about ADP remittances. “ NOUN in ADP that DET way, NOUN they PRON take VERB pressure NOUN off ADP governments NOUN to PART provide VERB welfare NOUN assistance NOUN and CCONJ guarantee VERB a DET certain ADJ standard NOUN of ADP living. NOUN ”“composition NOUN vi,” PROPN an DET abstract ADJ painting NOUN by ADP the DET russian ADJ master NOUN wassily PROPN kandinsky, PROPN has AUX now ADV been AUX restaged VERB in ADP the DET messy ADJ room NOUN of ADP a DET connecticut ADJ teenager. NOUN his PRON mother, [ NOUN redacted] , VERB a DET piano NOUN teacher, NOUN arranged VERB cymbals, NOUN a DET guitar NOUN and CCONJ a DET toy NOUN boat NOUN among ADP the DET room NOUN ’s VERB contents NOUN to PART symbolize VERB kandinsky PROPN ’s PROPN musical ADJ and CCONJ marine ADJ motifs. NOUN a DET blue ADJ latex NOUN glove NOUN reminds VERB the DET viewer NOUN of ADP the DET present ADJ day. NOUN people NOUN sheltering VERB in ADP place NOUN are AUX seeking VERB new ADJ ways NOUN to ADP connection NOUN online, ADV and CCONJ amid ADP the DET pandemic PROPN ’s PROPN bleakness, NOUN some DET report VERB a DET surge NOUN in ADP creativity. NOUN maybe ADV this DET is AUX why ADV a DET facebook NOUN group NOUN featuring [ VERB redacted] VERB recreations NOUN of ADP famous ADJ paintings NOUN has AUX more ADJ than SCONJ half DET a DET million NUM members, NOUN just ADV a DET few ADJ weeks NOUN after ADP it PRON was AUX created. VERB the DET group — NOUN izoizolyacia, PROPN combining VERB the DET russian ADJ words NOUN for “ ADP visual ADJ arts” NOUN and “ CCONJ isolation” — NOUN was AUX started VERB in ADP moscow PROPN by ADP a DET project NOUN manager NOUN at ADP a DET tech NOUN company. NOUN its PRON predominant ADJ language NOUN is AUX russian, ADJ but CCONJ more ADJ than SCONJ a DET third NOUN of ADP its PRON members NOUN live VERB outside ADP russia.the PUNCT copying- NOUN artworks NOUN gag NOUN is AUX not PART new, ADJ and CCONJ several ADJ museums — NOUN including VERB the DET getty NOUN in ADP los PROPN angeles PROPN and CCONJ the DET rijksmuseum NOUN in ADP amsterdam — PROPN are AUX encouraging VERB homebound ADJ art NOUN fans NOUN to PART send VERB in ADP photos NOUN of ADP efforts NOUN to PART bring VERB their PRON favorite ADJ paintings NOUN to ADP life. NOUN but CCONJ in ADP terms NOUN of ADP facebook NOUN followers, NOUN at ADP least, ADJ izoizolyacia PROPN ’s PART audience NOUN appears VERB to PART be AUX the DET most ADV engaged.even ADJ as SCONJ wedding NOUN halls NOUN and CCONJ hotels NOUN have AUX shuttered, VERB honeymoons NOUN evaporated VERB and CCONJ curfews NOUN slammed VERB down, ADP the DET coronavirus NOUN has AUX not PART quelled VERB couples’ NOUN ardor NOUN in ADP cairo. PROPN and CCONJ like SCONJ many ADJ others NOUN across ADP the DET middle PROPN east, PROPN they PRON pushed VERB ahead ADV with ADP weddings NOUN this DET past ADJ week. NOUN in ADP egypt, PROPN some DET couples NOUN shrank VERB their PRON ambitions NOUN to ADP small ADJ family NOUN gatherings. NOUN others NOUN flouted VERB public ADJ health NOUN restrictions NOUN with ADP secret ADJ parties NOUN and CCONJ guerrilla NOUN photo NOUN shoots. NOUN their PRON haste NOUN stemmed VERB from ADP a DET desire NOUN to PART beat VERB the DET deadline NOUN of ADP ramadan, PROPN which PRON started VERB friday. PROPN the DET holy ADJ month NOUN is AUX a DET solemn ADJ period NOUN when ADV weddings NOUN are AUX rare.some NOUN countries NOUN are AUX adapting. VERB in ADP the DET united PROPN arab PROPN emirates, PROPN hurried ADJ couples NOUN can AUX now ADV obtain VERB wedding NOUN licenses NOUN online. ADV in ADP kuwait, PROPN marriage NOUN courts NOUN offer VERB services NOUN by ADP special ADJ appointment — NOUN though SCONJ divorces NOUN are AUX unavailable.in PUNCT saudi PROPN arabia, PROPN some DET couples NOUN have AUX skipped VERB the DET once- ADV ironclad ADJ tradition NOUN of ADP holding VERB a DET wedding NOUN celebration NOUN before ADP moving VERB in ADV together, ADV even ADV if SCONJ they PRON are AUX already ADV legally ADV wed.such ADJ scenes NOUN of ADP determination NOUN in ADP the DET middle NOUN of ADP a DET major ADJ health NOUN crisis NOUN stem NOUN from ADP a DET simple ADJ truth: NOUN marriage NOUN may AUX be AUX important ADJ everywhere, ADV but CCONJ in ADP the DET middle PROPN east PROPN it PRON often ADV can VERB not PART wait.in PUNCT most ADJ arab ADJ countries, NOUN marriage NOUN confers VERB independence, NOUN the DET right NOUN to PART live VERB together, ADV cash NOUN gifts, NOUN a DET culturally ADV approved VERB sex NOUN life NOUN and, CCONJ for ADP women, NOUN heightened VERB status NOUN in ADP societies NOUN still ADV heavily ADV tilted VERB in ADP favor NOUN of ADP men.with PROPN virus NOUN infections NOUN in ADP egypt PROPN at ADP the DET low ADJ end NOUN of ADP the DET curve, NOUN about ADV 3,900 NUM cases NOUN for ADP 100 NUM million NUM people, NOUN some DET wedding- NOUN goers NOUN seemed VERB to PART believe VERB they PRON were AUX invincible. ADJ “this PROPN pandemic NOUN ca VERB n’t PART touch VERB us,” PRON a DET reveler NOUN named [ VERB redacted] VERB said VERB as SCONJ his PRON wedding NOUN party NOUN scrambled VERB to PART take VERB photos NOUN on ADP a DET cairo PROPN bridge NOUN at ADP a DET moment NOUN when ADV the DET police NOUN were AUX absent. ADJ the DET groom, NOUN in ADP a DET tuxedo NOUN and CCONJ sneakers, NOUN posed VERB with ADP the DET bride, NOUN in ADP a DET white ADJ dress. NOUN then ADV everyone PRON bundled VERB into ADP three NUM cars NOUN and CCONJ took VERB off.president PROPN trump PROPN ’s PART daily ADJ news NOUN briefings NOUN on ADP the DET coronavirus PROPN outbreak NOUN are AUX inflicting VERB grave ADJ damage NOUN on ADP his PRON political ADJ standing, NOUN republicans PROPN believe, VERB and CCONJ his PRON recent ADJ remarks NOUN about ADP combating VERB the DET virus NOUN with ADP sunlight NOUN and CCONJ disinfectant NOUN were AUX a DET breaking ADJ point NOUN for ADP a DET number NOUN of ADP senior ADJ party NOUN officials. NOUN new ADJ surveys NOUN show VERB mr. [ PROPN redacted] VERB trailing VERB significantly ADV in ADP battleground NOUN states NOUN like SCONJ michigan PROPN and CCONJ pennsylvania, PROPN and CCONJ he PRON is AUX even ADV narrowly ADV behind ADV in ADP must- AUX win VERB florida. PROPN mr. [ PROPN redacted] VERB ’s NOUN suggestion NOUN that SCONJ an DET injection NOUN of ADP disinfectant NOUN could AUX help VERB combat VERB the DET coronavirus NOUN prompted VERB warnings NOUN on ADP friday PROPN from ADP health NOUN officials NOUN across ADP the DET country, NOUN as ADV well ADV as SCONJ the DET makers NOUN of ADP clorox NOUN and CCONJ lysol NOUN and CCONJ several ADJ fox PROPN news PROPN personalities.the PROPN white PROPN house PROPN spent VERB much ADJ of ADP friday PROPN trying VERB to PART walk VERB back ADV mr. [ PROPN redacted] VERB ’s PROPN remarks, NOUN which PRON he PRON made VERB at ADP thursday PROPN ’s PROPN press NOUN briefing. NOUN vice PROPN president [ PROPN redacted] , VERB the DET head NOUN of ADP the DET white PROPN house PROPN coronavirus PROPN task PROPN force, NOUN abruptly ADV ended VERB friday PROPN ’s PART daily ADJ briefing PROPN shortly ADV after ADP it PRON began, VERB and CCONJ the DET president NOUN took VERB no DET questions. NOUN now, ADV mr. [ PROPN redacted] VERB ’s PROPN advisers NOUN are AUX encouraging VERB him PRON to PART skip VERB the DET daily ADJ briefings NOUN or CCONJ field NOUN fewer ADJ questions NOUN from ADP the DET reporters, NOUN and CCONJ mr. [ PROPN redacted] VERB himself PRON said VERB on ADP twitter NOUN on ADP saturday PROPN that SCONJ they PRON were AUX not PART in ADP his PRON best ADJ interest.[redacted] VERB is AUX the DET purpose NOUN of ADP having VERB white PROPN house PROPN news NOUN conferences NOUN when ADV the DET lamestream NOUN media NOUN asks VERB nothing PRON but SCONJ hostile ADJ questions, & NOUN then ADV refuses VERB to PART report VERB the DET truth NOUN or CCONJ facts NOUN accurately,” ADV mr. [ PROPN redacted] VERB said VERB on ADP twitter. “ NOUN they PRON get VERB record NOUN ratings, & NOUN the DET american ADJ people NOUN get VERB nothing PRON but SCONJ fake ADJ news. NOUN not PART worth ADJ the DET time & NOUN effort!”here PROPN ’s NOUN what PRON else ADV is AUX happening VERB in ADP the DET u.s.: PROPN as SCONJ states NOUN begin VERB allowing VERB businesses NOUN to PART reopen, VERB there PRON is AUX uncertainty NOUN around ADP how ADV a DET gradual ADJ restart NOUN to ADP the DET economy NOUN would AUX work VERB because SCONJ of ADP interconnected VERB supply NOUN chains. NOUN and CCONJ if SCONJ states NOUN reopen VERB their PRON economies NOUN too ADV quickly ADV that DET could AUX lead VERB to ADP a DET renewed VERB outbreak.governors NOUN deciding VERB about ADP opening VERB their PRON economies NOUN continue VERB to PART be AUX hampered VERB by ADP a DET shortage NOUN of ADP testing NOUN capacity, NOUN leaving VERB them PRON without ADP the DET information NOUN that PRON public ADJ health NOUN experts NOUN say VERB is AUX needed VERB to PART track VERB outbreaks NOUN and CCONJ contain VERB them. PRON testing NOUN capacity NOUN remains VERB nowhere ADV near SCONJ the DET level NOUN mr. [ PROPN redacted] VERB suggests VERB it PRON is, VERB and CCONJ governors, NOUN public ADJ health NOUN officials NOUN and CCONJ hospital NOUN executives NOUN say VERB they PRON are AUX still ADV scrambling — VERB and CCONJ competing VERB with ADP one NUM another — DET to PART procure VERB the DET equipment NOUN they PRON need. VERB the DET u.s. PROPN conducted VERB about ADV 1.2 NUM million NUM tests NOUN in ADP a DET week, NOUN but CCONJ experts NOUN say VERB that DET is AUX still ADV not PART enough.two ADJ antimalarial ADJ drugs — NOUN chloroquine PROPN and CCONJ hydroxychloroquine — PROPN promoted VERB by ADP mr. [ PROPN redacted] VERB as ADV effective ADJ against ADP the DET coronavirus NOUN were AUX being AUX prescribed VERB at ADP more ADJ than SCONJ six NUM times NOUN the DET normal ADJ rate NOUN during ADP the DET second ADJ week NOUN of ADP april, PROPN a DET data NOUN analysis NOUN by ADP the DET new PROPN york PROPN times PROPN shows. VERB on ADP friday, PROPN the DET food NOUN and CCONJ drug PROPN administration NOUN warned VERB against ADP using VERB the DET drugs NOUN outside ADP a DET hospital NOUN setting NOUN or CCONJ clinical ADJ trial NOUN because SCONJ they PRON could AUX lead VERB to ADP serious ADJ heart NOUN rhythm NOUN problems NOUN in ADP some DET coronavirus PROPN patients.john PROPN houghton, PROPN a DET climate NOUN scientist NOUN and CCONJ leading VERB figure NOUN in ADP the DET united PROPN nations PROPN panel NOUN that PRON brought VERB the DET threat NOUN of ADP climate NOUN change NOUN to ADP the DET world NOUN ’s PROPN attention NOUN and CCONJ received VERB a DET nobel PROPN prize, NOUN died VERB on ADP april PROPN 15 NUM in ADP dolgellau, PROPN wales. PROPN he PRON was [ VERB redacted] VERB cause NOUN was AUX complications NOUN of ADP the DET novel ADJ coronavirus, NOUN according VERB to ADP his PRON granddaughter [ NOUN redacted] , VERB who PRON announced VERB the DET death, NOUN at ADP a DET hospital, NOUN on ADP twitter.a NUM key ADJ participant NOUN in ADP the DET united PROPN nations PROPN intergovernmental ADJ panel NOUN on ADP climate NOUN change, NOUN dr. [ PROPN redacted] VERB was AUX the DET lead ADJ editor NOUN of ADP the DET organization NOUN ’s PART first ADJ three NUM reports, NOUN issued VERB in ADP 1990, NUM 1995 NUM and CCONJ 2001. NUM with ADP each DET report, NOUN the DET evidence NOUN underpinning VERB global ADJ warming NOUN and CCONJ the DET role NOUN humans NOUN play VERB in ADP causing VERB it PRON grew VERB more ADV ineluctable, ADJ and CCONJ the DET calls NOUN for ADP international ADJ action NOUN became VERB more ADV pressing. ADJ the DET group NOUN received VERB the DET 2007 NUM nobel PROPN peace PROPN prize PROPN jointly ADV with [ ADP redacted] , VERB the DET former ADJ vice NOUN president NOUN and CCONJ climate NOUN campaigner.speaking VERB about ADP climate NOUN change NOUN in ADP 1994, NUM dr. [ PROPN redacted] VERB said VERB that SCONJ delay NOUN served VERB no DET one. “ NOUN we PRON should AUX start VERB to PART do AUX what PRON we PRON can AUX do AUX now ADV and CCONJ also ADV begin VERB to PART plan VERB to PART do AUX more,” ADJ he PRON said, VERB and “ CCONJ not PART wait VERB 10 NUM or CCONJ 20 NUM years NOUN till SCONJ things NOUN are AUX more ADV clear.” ADJ read VERB the DET full ADJ obituary.with NOUN a DET population NOUN of ADP about ADV one NUM million NUM people NOUN and CCONJ an DET area NOUN of ADP 9,000 NUM square ADJ miles, NOUN djibouti PROPN is AUX one NUM of ADP africa PROPN ’s PROPN smallest ADJ countries. NOUN but CCONJ this DET week NOUN the DET horn NOUN of ADP africa PROPN nation NOUN was AUX listed VERB as SCONJ having VERB the DET highest ADJ prevalence NOUN of ADP coronavirus PROPN cases, NOUN 986, NUM in ADP africa.the DET figure NOUN reflects VERB mass ADJ coronavirus NOUN testing NOUN in ADP the DET country. NOUN but CCONJ officials NOUN have AUX also ADV spoken VERB of ADP people NOUN not PART adhering VERB to ADP social ADJ distancing NOUN and CCONJ hygiene NOUN rules.the PROPN state NOUN has AUX shut VERB its PRON borders, NOUN suspended VERB international ADJ flights, NOUN and CCONJ closed VERB schools NOUN and CCONJ all DET places NOUN of ADP worship. NOUN “what INTJ we PRON are AUX asking VERB of ADP you PRON is AUX to PART save VERB yourselves, NOUN to PART save VERB your PRON siblings, NOUN your PRON mothers NOUN and CCONJ fathers NOUN and CCONJ the DET old ADJ people,” NOUN president [ PROPN redacted] VERB said VERB in ADP a DET recent ADJ televised VERB speech. “ NOUN i PRON ask VERB you PRON to PART stay VERB at ADP home. NOUN ”djibouti, PROPN at ADP the DET southern ADJ entrance NOUN to ADP the DET red PROPN sea, PROPN has AUX taken VERB advantage NOUN of ADP its PRON location NOUN at ADP a DET busy ADJ shipping NOUN route NOUN and CCONJ its PRON relative ADJ stability NOUN in ADP a DET volatile ADJ region NOUN to PART increase VERB its PRON geostrategic ADJ relevance. NOUN it PRON is AUX home NOUN to ADP several ADJ foreign ADJ military ADJ bases, NOUN including VERB one NUM of ADP the DET united PROPN states’ PROPN largest ADJ foreign ADJ installations NOUN and CCONJ china PROPN ’s PROPN first ADJ overseas ADJ military ADJ base. NOUN as SCONJ the DET coronavirus NOUN has AUX spread, VERB these DET military ADJ installations NOUN have AUX heightened VERB their PRON safety NOUN measures.on PROPN april PROPN 23, NUM maj. PROPN gen. [ PROPN redacted] , VERB commander NOUN of ADP the DET combined ADJ joint ADJ task NOUN force NOUN horn PROPN of ADP africa, PROPN declared VERB a DET public ADJ health NOUN emergency NOUN for ADP the DET u.s. PROPN personnel NOUN under ADP his PRON authority NOUN in ADP djibouti. “ PROPN combating VERB covid-19 PROPN is AUX my PRON top ADJ priority,” NOUN he PRON said VERB in ADP a DET statement, NOUN referring VERB to ADP the DET disease NOUN caused VERB by ADP the DET virus. “ NOUN by ADP declaring VERB a DET public ADJ health NOUN emergency, NOUN it PRON keeps VERB our PRON forces, NOUN and CCONJ those DET of ADP our PRON host NOUN nation NOUN partner, NOUN as SCONJ healthy ADJ and CCONJ as ADV safe ADJ as SCONJ possible. ADJ ”a PROPN park PROPN in ADP okinawa PROPN city, PROPN japan, PROPN has AUX mowed VERB down ADP sprawling VERB lily ADJ fields NOUN that PRON usually ADV draw VERB thousands NOUN of ADP people, NOUN in ADP an DET effort NOUN to PART prevent VERB visitors NOUN from ADP gathering VERB and CCONJ spreading VERB the DET coronavirus.fears NOUN of ADP the DET virus NOUN and CCONJ a DET nationwide ADJ state NOUN of ADP emergency NOUN declared VERB this DET month NOUN did AUX not PART deter VERB people NOUN from ADP visiting VERB the DET okinawa PROPN comprehensive ADJ athletic ADJ park, NOUN where ADV its PRON lilies NOUN were AUX approaching VERB full ADJ bloom. NOUN in ADP response, NOUN the DET park NOUN clipped VERB 10,000 NUM of ADP its PRON 16,000 NUM lilies NOUN on ADP friday. PROPN “our PRON staff NOUN spent VERB a DET whole ADJ year NOUN growing VERB them,” PRON seiji PROPN fukushima, PROPN the DET park NOUN ’s PROPN director, NOUN said VERB on ADP saturday. “ PROPN they PRON were AUX crying VERB as SCONJ they PRON cut VERB them PRON off. ADP ”despite PROPN the DET emergency NOUN declarations NOUN this DET month, NOUN many ADJ residents NOUN across ADP the DET country NOUN still ADV visited VERB beaches, NOUN parks NOUN and CCONJ restaurants, NOUN raising VERB concerns NOUN about ADP its PRON measures NOUN to PART curb VERB the DET outbreak. NOUN mr. [ PROPN redacted] VERB said VERB many ADJ service NOUN members NOUN of ADP the DET u.s. PROPN military ADJ bases NOUN in ADP okinawa PROPN prefecture NOUN had AUX visited VERB or CCONJ jogged VERB in ADP the DET park NOUN despite SCONJ social ADJ distancing NOUN rules, NOUN and CCONJ residents NOUN had AUX complained VERB that SCONJ many ADJ of ADP them PRON did AUX not PART wear VERB masks.the X flowers NOUN are AUX usually ADV harvested VERB in ADP mid- NOUN may, PROPN when ADV bulbs NOUN are AUX collected VERB and CCONJ stored VERB for ADP planting VERB later. ADV the DET park NOUN said VERB that SCONJ the DET cropped VERB lilies NOUN had AUX been AUX distributed VERB to ADP people NOUN and CCONJ that SCONJ it PRON would AUX use VERB the DET opportunity NOUN to PART improve VERB its PRON soil NOUN this DET year.as PROPN of ADP saturday, PROPN japan PROPN had AUX more ADJ than SCONJ 13,500 NUM confirmed VERB coronavirus NOUN cases NOUN and CCONJ 341 NUM deaths.in NOUN israel, PROPN where ADV nearly ADV everyone PRON has AUX someone PRON to PART mourn VERB from ADP wars NOUN and CCONJ continuing VERB conflicts, NOUN memorial ADJ day — NOUN   SPACE which PRON is AUX observed VERB from ADP monday PROPN at ADP sundown NOUN until ADP tuesday PROPN at ADP sundown — NOUN ordinarily ADV draws VERB hundreds NOUN of ADP thousands NOUN to ADP national ADJ cemeteries. NOUN but CCONJ fears NOUN that SCONJ crowds NOUN could AUX spread VERB the DET coronavirus NOUN have AUX prompted VERB the DET government NOUN to PART plead VERB with ADP people NOUN to PART stay VERB away. ADV “it PROPN causes VERB me PRON immense ADJ pain NOUN that PRON i PRON wo VERB n’t PART be AUX with ADP my PRON brother NOUN on ADP memorial PROPN day, PROPN but CCONJ i PRON know VERB the DET right ADJ thing NOUN is AUX to PART stay VERB home,” ADV said [ VERB redacted] , VERB 72, NUM referring VERB to ADP her PRON sibling, [ NOUN redacted] , VERB who PRON was AUX killed VERB in ADP the DET wake NOUN of ADP a DET conflict NOUN between ADP israel PROPN and CCONJ syria PROPN in ADP 1974. “ NUM cemeteries NOUN get VERB very ADV crowded ADJ every DET year. NOUN it PRON ’s VERB simply ADV too ADV risky ADJ to PART go VERB now. ADV ”defense PROPN minister [ PROPN redacted] VERB said VERB at ADP a DET news NOUN conference NOUN that SCONJ observing VERB memorial ADJ day NOUN as SCONJ in ADP past ADJ years NOUN would AUX create “ VERB a DET coronavirus NOUN ticking VERB time NOUN bomb.” NOUN about ADP one NUM and CCONJ a DET half NOUN million NUM israelis PROPN usually ADV visit VERB burial NOUN grounds NOUN across ADP the DET country NOUN during ADP the DET holiday, NOUN he PRON said.some VERB israelis, PROPN however, ADV have AUX vowed VERB to PART go VERB to ADP the DET cemeteries, NOUN arguing VERB that SCONJ they PRON would AUX not PART threaten VERB public ADJ health NOUN as ADV long ADV as SCONJ they PRON maintain VERB social ADJ distancing NOUN measures.[redacted] PROPN family NOUN and CCONJ i PRON will AUX go,” VERB said [ VERB redacted] , VERB 64, NUM whose PRON son NOUN rafanel PROPN was AUX killed VERB in ADP conflict NOUN between ADP israel PROPN and CCONJ the DET lebanese ADJ militant NOUN group NOUN hezbollah PROPN in ADP 2006. “ NUM this DET day NOUN is AUX so ADV important ADJ to ADP us. PRON ”while ADP the DET government NOUN decided VERB that SCONJ it PRON would AUX not PART permit VERB israelis PROPN to PART go VERB to ADP cemeteries, NOUN the DET police NOUN will AUX not PART use VERB force NOUN to PART stop VERB them, PRON officials NOUN have AUX said.israel PROPN had AUX recorded VERB more ADJ than SCONJ 15,000 NUM cases NOUN of ADP the DET virus NOUN as SCONJ of ADP saturday, PROPN and CCONJ nearly ADV 200 NUM deaths.vanuatu, NOUN a DET pacific ADJ island NOUN nation NOUN of ADP 300,000 NUM people, NOUN gave VERB sports NOUN fans NOUN worldwide ADV what PRON they PRON ’d VERB been VERB craving VERB on ADP saturday: PROPN something PRON to PART watch, VERB live, VERB with ADP the DET outcome NOUN unknown.cricket PROPN may AUX not PART be AUX everyone PRON ’s PROPN cup NOUN of ADP tea, NOUN but CCONJ the DET vanuatu PROPN cricket PROPN association PROPN livestreamed VERB its PRON women NOUN ’s PART super PROPN league PROPN final, ADJ inviting VERB sports NOUN fans NOUN everywhere ADV to PART take VERB a DET break NOUN from ADP the DET recorded VERB footage NOUN that PRON many ADJ have AUX had VERB to PART settle VERB for ADP during ADP the DET pandemic. NOUN “we PROPN thought VERB it PRON ’s VERB our PRON duty NOUN to PART provide VERB the DET world NOUN with ADP some DET live ADJ sport,” NOUN said [ VERB redacted] , VERB the DET chief ADJ executive NOUN of ADP the DET vanuatu PROPN cricket PROPN association PROPN and CCONJ a DET former ADJ player NOUN for ADP the DET australian ADJ national ADJ team. “ NOUN it PRON ’s VERB one NUM of ADP the DET only ADJ live ADJ sports NOUN around ADP the DET world NOUN at ADP the DET moment. NOUN we PRON can AUX showcase VERB a DET bit NOUN of ADP cricket NOUN for ADP everyone PRON who PRON is AUX in ADP lockdown. PROPN ”vanuatu, PROPN like SCONJ many ADJ other ADJ small ADJ pacific ADJ nations, NOUN has AUX managed VERB to PART keep VERB the DET coronavirus NOUN from ADP spreading, VERB or CCONJ even ADV arriving, VERB if SCONJ official ADJ figures NOUN are AUX correct. ADJ the DET country NOUN went VERB into ADP lockdown NOUN late ADV last ADJ month NOUN as SCONJ a DET precaution. NOUN after ADP it PRON was AUX hit VERB by ADP a DET major ADJ cyclone NOUN on ADP april PROPN 6, NUM the DET lockdown NOUN was AUX lifted VERB so SCONJ that SCONJ people NOUN could AUX recover VERB and CCONJ rebuild.during VERB the DET match NOUN on ADP saturday, PROPN small ADJ crowds NOUN of ADP fans NOUN could AUX be AUX seen VERB surrounding VERB the DET pitch, NOUN standing VERB or CCONJ sitting VERB a DET few ADJ feet NOUN apart, ADV clearly ADV enjoying VERB the DET sight. NOUN comments NOUN on ADP the DET cricket PROPN association PROPN ’s PROPN facebook PROPN page, NOUN where ADV the DET livestream NOUN was AUX shown, VERB thanked VERB vanuatu ADV for ADP sharing.president ADJ trump NOUN has AUX promised VERB in ADP a DET tweet NOUN to PART provide VERB ventilators NOUN to ADP indonesia, PROPN where ADV a DET rising VERB number NOUN of ADP coronavirus PROPN cases NOUN threatens VERB to PART overwhelm VERB the DET country NOUN ’s PART poorly ADV equipped VERB and CCONJ understaffed ADJ health NOUN care NOUN system. NOUN “just PROPN spoke VERB to ADP my PRON friend, NOUN president [ PROPN redacted] VERB of ADP the DET republic PROPN of ADP indonesia,” PROPN mr. [ PROPN redacted] VERB wrote VERB on ADP friday. “ PROPN asking VERB for ADP ventilators, NOUN which PRON we PRON will AUX provide. VERB great ADJ cooperation NOUN between ADP us!”in PROPN reply, PROPN mr. PROPN joko PROPN ’s PROPN spokesman, [ NOUN redacted] , VERB tweeted VERB on ADP saturday, “ PROPN thank VERB you PRON very ADV much ADV for ADP great ADJ cooperation NOUN between ADP the DET usa PROPN and CCONJ the DET republic PROPN of ADP indonesia PROPN mr. [ PROPN redacted] .” VERB indonesia, PROPN with ADP a DET population NOUN of ADP 270 NUM million, NUM is AUX the DET world NOUN ’s PART fourth ADV largest ADJ country NOUN but CCONJ has AUX only ADV about ADV 8,400 NUM ventilators NOUN to PART help VERB patients NOUN with ADP the DET coronavirus, NOUN which PRON has AUX spread VERB to ADP all DET 34 NUM provinces.indonesia PROPN has AUX reported VERB 720 NUM deaths NOUN from ADP the DET coronavirus, NOUN the DET second ADJ highest ADJ toll NOUN in ADP east PROPN asia PROPN after ADP china. PROPN but CCONJ some DET officials NOUN say VERB many ADJ more ADJ deaths NOUN have AUX gone VERB unreported.mr. X trump PROPN also ADV said VERB the DET united PROPN states PROPN would AUX send VERB ventilators NOUN to ADP three NUM latin ADJ american ADJ countries — NOUN ecuador, PROPN el PROPN salvador PROPN and CCONJ honduras — PROPN that PRON are AUX reeling VERB from ADP the DET pandemic. NOUN he PRON did AUX not PART say VERB how ADV many ADJ ventilators NOUN would AUX be AUX sent VERB to ADP any DET of ADP the DET four NUM countries NOUN or CCONJ when ADV they PRON would AUX arrive.ecuador VERB ’s PROPN largest ADJ city, NOUN guayaquil, PROPN has AUX been AUX especially ADV hard ADV hit. VERB hospitals NOUN and CCONJ clinics NOUN have AUX been AUX so ADV overwhelmed ADJ that SCONJ they PRON have AUX been AUX unable ADJ to PART treat VERB some DET patients. NOUN bodies NOUN have AUX been AUX found VERB abandoned VERB on ADP sidewalks NOUN and CCONJ slumped VERB in ADP wheelchairs.the DET honduran PROPN president, [ PROPN redacted] VERB hernández, PROPN also ADV spoke VERB with ADP mr. [ PROPN redacted] VERB and CCONJ requested VERB help NOUN with ADP ventilators NOUN and CCONJ testing. NOUN he PRON said VERB he PRON had AUX also ADV asked VERB for ADP assistance NOUN in ADP securing VERB debt NOUN relief NOUN for ADP poor ADJ countries NOUN and CCONJ financial ADJ aid NOUN from ADP international ADJ lenders.in NOUN a DET tweet NOUN on ADP friday PROPN evening NOUN about ADP his PRON conversation NOUN with ADP the DET honduran PROPN president, PROPN mr. [ PROPN redacted] VERB said, “ VERB we PRON work VERB closely ADV together ADV on ADP the DET southern ADJ border. NOUN will AUX be AUX helping VERB him PRON with ADP his PRON request NOUN for ADP ventilators NOUN and CCONJ testing. NOUN ”reporting PROPN was AUX contributed VERB by ADP lara PROPN jakes, [ PROPN redacted] , [ VERB redacted] , [ VERB redacted] , VERB dera PROPN menra PROPN sijabat, PROPN vikas PROPN bajaj, [ PROPN redacted] , VERB tiffany PROPN may, [ AUX redacted] , VERB kirk PROPN semple, [ PROPN redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] , VERB tess NOUN felder, [ NOUN redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] , VERB abdi [ NOUN redacted] , [ VERB redacted] , [ VERB redacted] , VERB letícia PROPN casado, [ PROPN redacted] VERB and [ CCONJ redacted] . [ VERB redacted] VERB contributed VERB research.updated ADJ april PROPN 11, NUM 2020this NUM is AUX a DET difficult ADJ question, NOUN because SCONJ a DET lot NOUN depends VERB on ADP how ADV well ADV the DET virus NOUN is AUX contained. VERB a DET better ADJ question NOUN might AUX be: “ VERB how ADV will AUX we PRON know VERB when ADV to PART reopen VERB the DET country?” NOUN in ADP an DET american PROPN enterprise PROPN institute PROPN report, [ PROPN redacted] , [ VERB redacted] , [ VERB redacted] , [ VERB redacted] VERB and [ CCONJ redacted] VERB staked VERB out ADP four NUM goal NOUN posts NOUN for ADP recovery: NOUN hospitals NOUN in ADP the DET state NOUN must AUX be AUX able ADJ to PART safely ADV treat VERB all DET patients NOUN requiring VERB hospitalization, NOUN without ADP resorting VERB to ADP crisis NOUN standards NOUN of ADP care; NOUN the DET state NOUN needs VERB to PART be AUX able ADJ to PART at ADP least ADJ test NOUN everyone PRON who PRON has AUX symptoms; NOUN the DET state NOUN is AUX able ADJ to PART conduct VERB monitoring NOUN of ADP confirmed VERB cases NOUN and CCONJ contacts; NOUN and CCONJ there PRON must AUX be AUX a DET sustained ADJ reduction NOUN in ADP cases NOUN for ADP at ADV least ADJ 14 NUM days.the DET times NOUN neediest NOUN cases NOUN fund NOUN has AUX started VERB a DET special ADJ campaign NOUN to PART help VERB those DET who PRON have AUX been AUX affected, VERB which PRON accepts VERB donations NOUN here. ADV charity NOUN navigator, NOUN which PRON evaluates VERB charities NOUN using VERB a DET numbers- NOUN based VERB system, NOUN has AUX a DET running ADJ list NOUN of ADP nonprofits NOUN working VERB in ADP communities NOUN affected VERB by ADP the DET outbreak. NOUN you PRON can AUX give VERB blood NOUN through ADP the DET american PROPN red PROPN cross, PROPN and CCONJ world PROPN central ADJ kitchen PROPN has AUX stepped VERB in ADP to PART distribute VERB meals NOUN in ADP major ADJ cities. NOUN more ADJ than SCONJ 30,000 NUM coronavirus- NOUN related VERB gofundme NOUN fund- NOUN raisers NOUN have AUX started VERB in ADP the DET past ADJ few ADJ weeks. ( NOUN the DET sheer ADJ number NOUN of ADP fund- NOUN raisers NOUN means VERB more ADJ of ADP them PRON are AUX likely ADJ to PART fail VERB to PART meet VERB their PRON goal, NOUN though.)if PROPN you PRON ’ve VERB been AUX exposed VERB to ADP the DET coronavirus NOUN or CCONJ think VERB you PRON have, VERB and CCONJ have AUX a DET fever NOUN or CCONJ symptoms NOUN like SCONJ a DET cough NOUN or CCONJ difficulty NOUN breathing, NOUN call VERB a DET doctor. NOUN they PRON should AUX give VERB you PRON advice NOUN on ADP whether SCONJ you PRON should AUX be AUX tested, VERB how ADV to PART get AUX tested, VERB and CCONJ how ADV to PART seek VERB medical ADJ treatment NOUN without ADP potentially ADV infecting VERB or CCONJ exposing VERB others.the PUNCT c.d.c. PROPN has AUX recommended VERB that SCONJ all DET americans PROPN wear VERB cloth NOUN masks NOUN if SCONJ they PRON go VERB out ADP in ADP public. NOUN this DET is AUX a DET shift NOUN in ADP federal ADJ guidance NOUN reflecting VERB new ADJ concerns NOUN that SCONJ the DET coronavirus NOUN is AUX being AUX spread VERB by ADP infected ADJ people NOUN who PRON have AUX no DET symptoms. NOUN until ADP now, ADV the DET c.d.c., PROPN like SCONJ the DET w.h.o., PROPN has AUX advised VERB that SCONJ ordinary ADJ people NOUN do AUX n’t PART need VERB to PART wear VERB masks NOUN unless SCONJ they PRON are AUX sick ADJ and CCONJ coughing. VERB part NOUN of ADP the DET reason NOUN was AUX to PART preserve VERB medical- ADJ grade NOUN masks NOUN for ADP health NOUN care NOUN workers NOUN who PRON desperately ADV need VERB them PRON at ADP a DET time NOUN when ADV they PRON are AUX in ADP continuously ADV short ADJ supply. NOUN masks NOUN do AUX n’t PART replace VERB hand NOUN washing NOUN and CCONJ social [ ADJ redacted] VERB you PRON ’re VERB sick ADJ and CCONJ you PRON think VERB you PRON ’ve VERB been AUX exposed VERB to ADP the DET new ADJ coronavirus, NOUN the DET c.d.c. PROPN recommends VERB that SCONJ you PRON call VERB your PRON healthcare NOUN provider NOUN and CCONJ explain VERB your PRON symptoms NOUN and CCONJ fears. NOUN they PRON will AUX decide VERB if SCONJ you PRON need VERB to PART be AUX tested. VERB keep VERB in ADP mind NOUN that SCONJ there PRON ’s VERB a DET chance — NOUN because SCONJ of ADP a DET lack NOUN of ADP testing NOUN kits NOUN or CCONJ because SCONJ you PRON ’re VERB asymptomatic, ADJ for ADP instance — NOUN you PRON wo VERB n’t PART be AUX able ADJ to PART get [ VERB redacted] VERB seems VERB to PART spread VERB very ADV easily ADV from ADP person NOUN to ADP person, NOUN especially ADV in ADP homes, NOUN hospitals NOUN and CCONJ other ADJ confined ADJ spaces. NOUN the DET pathogen NOUN can AUX be AUX carried VERB on ADP tiny ADJ respiratory ADJ droplets NOUN that PRON fall VERB as SCONJ they PRON are AUX coughed VERB or CCONJ sneezed VERB out. ADP it PRON may AUX also ADV be AUX transmitted VERB when ADV we PRON touch VERB a DET contaminated VERB surface NOUN and CCONJ then ADV touch VERB our PRON face.no. PROPN clinical ADJ trials NOUN are AUX underway ADJ in ADP the DET united PROPN states, PROPN china PROPN and CCONJ europe. PROPN but CCONJ american ADJ officials NOUN and CCONJ pharmaceutical ADJ executives NOUN have AUX said VERB that SCONJ a DET vaccine NOUN remains VERB at ADP least ADJ 12 NUM to PART 18 NUM months NOUN away.unlike ADP the DET flu, NOUN there PRON is AUX no DET known VERB treatment NOUN or CCONJ vaccine, NOUN and CCONJ little ADJ is AUX known VERB about ADP this DET particular ADJ virus NOUN so ADV far. ADV it PRON seems VERB to PART be AUX more ADV lethal ADJ than SCONJ the DET flu, NOUN but CCONJ the DET numbers NOUN are AUX still ADV uncertain. ADJ and CCONJ it PRON hits VERB the DET elderly ADJ and CCONJ those DET with ADP underlying ADJ conditions — NOUN not PART just ADV those DET with ADP respiratory ADJ diseases — NOUN particularly ADV hard.if PROPN the DET family NOUN member NOUN does AUX n’t PART need VERB hospitalization NOUN and CCONJ can AUX be AUX cared VERB for ADP at ADP home, NOUN you PRON should AUX help VERB him PRON or CCONJ her PRON with ADP basic ADJ needs NOUN and CCONJ monitor VERB the DET symptoms, NOUN while SCONJ also ADV keeping VERB as ADV much ADJ distance NOUN as SCONJ possible, ADJ according VERB to ADP guidelines NOUN issued VERB by ADP the DET c.d.c. PROPN if SCONJ there PRON ’s PROPN space, NOUN the DET sick ADJ family NOUN member NOUN should AUX stay VERB in ADP a DET separate ADJ room NOUN and CCONJ use VERB a DET separate ADJ bathroom. NOUN if SCONJ masks NOUN are AUX available, ADJ both CCONJ the DET sick ADJ person NOUN and CCONJ the DET caregiver NOUN should AUX wear VERB them PRON when ADV the DET caregiver NOUN enters VERB the DET room. NOUN make VERB sure ADJ not PART to PART share VERB any DET dishes NOUN or CCONJ other ADJ household NOUN items NOUN and CCONJ to PART regularly ADV clean VERB surfaces NOUN like SCONJ counters, NOUN doorknobs, NOUN toilets NOUN and CCONJ tables. NOUN do AUX n’t PART forget VERB to PART wash VERB your PRON hands NOUN frequently.plan PROPN two NUM weeks NOUN of ADP meals NOUN if SCONJ possible. ADJ but CCONJ people NOUN should AUX not PART hoard VERB food NOUN or CCONJ supplies. NOUN despite SCONJ the DET empty ADJ shelves, NOUN the DET supply NOUN chain NOUN remains VERB strong. ADJ and CCONJ remember VERB to PART wipe VERB the DET handle NOUN of ADP the DET grocery NOUN cart NOUN with ADP a DET disinfecting NOUN wipe NOUN and CCONJ wash VERB your PRON hands NOUN as ADV soon ADV as SCONJ you PRON get VERB home.yes, PROPN but CCONJ make VERB sure ADJ you PRON keep VERB six NUM feet NOUN of ADP distance NOUN between ADP you PRON and CCONJ people NOUN who PRON do AUX n’t PART live VERB in ADP your PRON home. NOUN even ADV if SCONJ you PRON just ADV hang VERB out ADP in ADP a DET park, NOUN rather ADV than SCONJ go VERB for ADP a DET jog NOUN or CCONJ a DET walk, NOUN getting VERB some DET fresh ADJ air, NOUN and CCONJ hopefully ADV sunshine, NOUN is AUX a DET good ADJ idea.that NOUN ’s VERB not PART a DET good ADJ idea. NOUN even ADV if SCONJ you PRON ’re VERB retired, ADJ having VERB a DET balanced ADJ portfolio NOUN of ADP stocks NOUN and CCONJ bonds NOUN so SCONJ that SCONJ your PRON money NOUN keeps VERB up ADP with ADP inflation, NOUN or CCONJ even ADV grows, VERB makes VERB sense. NOUN but CCONJ retirees NOUN may AUX want VERB to PART think VERB about ADP having VERB enough ADJ cash NOUN set VERB aside ADV for ADP a DET year NOUN ’s PART worth NOUN of ADP living NOUN expenses NOUN and CCONJ big ADJ payments NOUN needed VERB over ADP the DET next ADJ five NUM years.watching VERB your PRON balance NOUN go VERB up ADV and CCONJ down ADV can AUX be AUX scary. ADJ you PRON may AUX be AUX wondering VERB if SCONJ you PRON should AUX decrease VERB your PRON contributions — NOUN do AUX n’t! ADV if SCONJ your PRON employer NOUN matches VERB any DET part NOUN of ADP your PRON contributions, NOUN make VERB sure ADJ you PRON ’re VERB at ADP least ADJ saving VERB as ADV much ADV as SCONJ you PRON can AUX to PART get AUX that “ ADP free ADJ money. NOUN ”advertisement PROPN nsubj advcl agent det npadvmod amod pobj aux det dobj compound nsubj nsubj aux relcl prt det dobj det amod compound dobj det appos prep poss pobj mark csubj dobj aux acl det dobj nsubj acl ccomp poss amod compound compound nsubj ccomp neg advmod acomp poss compound nsubj nsubj aux relcl nsubj aux ccomp advmod mark det nsubj advcl advmod det amod dobj preconj acl prep det pobj prep auxpass pcomp cc conj prep amod pobj cc compound conj prep det pobj advmod prep det compound compound compound compound pobj advcl mark amod nsubj prep pobj aux ccomp prep det amod pobj aux conj dobj advmod aux xcomp det dobj aux acl dobj acl agent det compound pobj nsubj aux advmod advmod relcl nummod dobj prep prep det pobj aux ccomp prt nsubj prep amod pobj prep pobj prep det amod pobj cc conj cc amod nsubj aux amod nsubj ccomp prep amod pobj nsubj aux relcl dobj prep cc conj prep det pobj prep det pobj cc expl advmod advmod advmod nummod amod attr cc amod conj advmod nsubj aux relcl nsubj ccomp nsubj aux mark det nsubjpass prep pcomp det dobj prep pcomp prep det pobj prep pobj auxpass ccomp agent pobj prep compound compound pobj nsubj aux ccomp advmod prep det compound pobj advmod nsubj relcl det attr cc nsubj conj dobj prep compound pobj cc nsubj conj dobj prep det pobj nsubj relcl advmod acomp nsubj det compound nmod appos nmod amod amod dobj cc prep pcomp prt prep amod pobj prep amod advmod det nsubj relcl advmod aux xcomp nsubj aux det amod attr prep det amod pobj nsubj aux neg relcl amod dobj aux relcl prep nsubjpass acl advmod prep det compound pobj aux auxpass prep pcomp amod dobj prep det amod quantmod quantmod nummod amod pobj nsubj relcl poss compound dobj aux xcomp prep det compound pobj aux aux conj prep compound pobj nsubjpass auxpass aux xcomp amod dobj mark nsubj advcl det amod nsubj prep pobj aux advmod poss amod nsubj ccomp advmod compound nsubj dobj prep pcomp prt pobj cc nsubj conj advmod acomp cc mark nsubj advcl prep pobj amod advmod aux xcomp prep poss pobj cc conj dobj advmod amod nsubj aux advmod aux aux xcomp advmod compound dobj nsubj relcl aux xcomp advmod acomp prep amod pobj cc amod poss nsubj aux acomp prep det compound pobj amod nsubj nsubj aux ccomp aux xcomp prep compound pobj nsubj compound acomp prep det poss pobj cc aux nsubj conj advmod advmod nsubj aux ccomp acomp nsubj nsubj relcl acomp aux xcomp advmod mark amod nsubj advcl ccomp advmod neg acomp nsubj aux ccomp acomp aux xcomp advmod aux advcl poss amod dobj dep prep compound pobj mark nsubjpass aux auxpass ccomp punct aux xcomp det dobj cc conj prep prep pobj nummod mark det compound compound compound nsubj advcl aux xcomp prep det amod pobj det amod dobj npadvmod ccomp aux neg xcomp det dobj prep pobj aux advmod ccomp cc poss nsubj mark amod nsubj advcl aux xcomp advmod prep pobj prep det amod pobj mark det nsubj advcl prep pobj prep dep pobj nsubj aux acomp aux xcomp prep nummod pobj prep nummod pobj prep poss pobj advmod advcl agent det pobj nsubj advmod mark det amod compound compound nsubj aux ccomp acomp cc conj cc conj det amod cc conj nsubj mark poss nsubj aux advmod ccomp det dobj cc nsubj aux conj aux xcomp amod dobj advmod advmod prep det amod pobj ccomp det amod dobj prep poss amod compound pobj prep pobj amod prep pobj prep prep pobj prep pobj cc det nsubj det amod dobj det npadvmod prep pcomp amod compound dobj prep amod compound compound compound compound nsubjpass aux auxpass conj prep pobj nummod cc det amod cc conj nsubj aux mark det amod nsubj prep compound pobj aux ccomp prep prep pobj det npadvmod prep pobj prep compound pobj nummod pobj det nsubj prep amod pobj prep pobj aux advmod ccomp prep pobj advmod advmod cc amod conj poss nsubj auxpass neg conj prep nmod compound compound compound compound pobj advcl det amod npadvmod prep advmod nummod amod pobj cc nummod conj nsubj ccomp prep advmod advmod amod nsubj acl aux pcomp prep pobj amod npadvmod npadvmod csubj dobj advmod amod dobj prep det compound pobj dobj nsubj aux relcl det advmod oprd nsubjpass aux neg auxpass ccomp aux xcomp amod dobj conj dobj prep pobj prep nmod cc compound pobj aux advmod aux xcomp advmod advmod prep pobj poss compound compound nsubj advcl prep det amod pobj nsubj advmod relcl dobj advmod aux oprd amod attr det attr nsubj det attr prep det amod pobj prep pobj prep pcomp prt prep pobj prep det compound compound pobj nsubj aux relcl poss amod dobj cc amod amod prep pobj prep pobj amod compound nsubj prep pobj prep det pobj prep amod cc conj pobj det nsubj aux relcl dobj advcl advmod advcl det amod nsubjpass prep poss compound pobj auxpass ccomp agent pobj cc conj prep det pobj prep det advmod amod pobj prep poss pobj prep pobj prep det amod compound pobj cc det conj mark amod amod amod nsubj aux advcl det dobj prep amod pobj mark nsubj advcl amod compound dobj aux relcl det dobj prep det pobj npadvmod compound nsubj aux ccomp prep dobj nsubj pcomp det compound oprd mark nsubj advcl prep det pobj prep pcomp det compound dobj prep det amod pobj prep amod pobj det nsubj prep pobj prep poss amod dobj prep det compound pobj advmod ccomp det nsubj advmod det amod nsubj advcl advcl prep det amod pobj aux nsubj nsubj prep pobj ccomp advmod nsubj aux neg nsubj ccomp det nsubj advmod det nsubj prep pobj cc conj aux relcl prt det amod dobj prep det pobj aux advcl prep amod pobj prep pobj cc conj nsubj det attr nsubj neg ccomp det dobj prep pobj compound nsubj cc compound conj acomp amod npadvmod nsubjpass auxpass prep amod pobj amod nsubj prep amod pobj mark det amod nsubj prep advmod det pobj aux advcl prep det pobj npadvmod det nsubjpass auxpass amod nsubj dobj aux xcomp intj det amod dobj prep pobj advmod appos cc det amod conj appos conj mark compound compound nsubj ccomp advmod acomp mark advcl prep nummod pobj det nsubj aux advmod ccomp advmod amod nsubj ccomp det amod dobj expl ccomp det attr mark det amod nsubj aux acl prep det amod attr cc det amod compound conj nsubj amod dobj aux relcl det dobj advcl prep det pobj prep det pobj dobj nsubj aux relcl oprd prep det poss case amod compound pobj nsubj ccomp amod dobj cc aux conj amod dobj det nsubj aux ccomp xcomp prt xcomp det nsubj prep amod nmod compound nmod nmod nmod pobj pobj det amod appos prep amod amod pobj mark prep pobj prep nmod nmod amod pobj auxpass ccomp advcl amod compound dobj auxpass prep pobj cc aux conj acomp prep compound pobj amod appos nsubj det amod prep pobj dobj prep pobj cc conj det appos prep amod quantmod pobj prep det pobj compound compound appos cc conj prep det pobj cc conj advcl advmod prep nummod compound pobj prep pobj ccomp compound nsubj prep compound pobj appos prep pobj cc conj dobj prep dobj nsubj pcomp prep pcomp det nmod nmod amod nsubj prep det pobj prep det pobj prep det pobj prep pobj conj amod dobj prep pobj nummod prep pobj prep det compound pobj cc advmod conj det dobj prep poss pobj acomp nsubj relcl prep compound pobj prep prep compound compound pobj det amod compound compound appos nsubj relcl prep pobj mark det nsubj ccomp prt mark nsubj auxpass advcl aux xcomp det dobj prep det pobj prep det amod pobj cc nsubj conj acomp aux xcomp det amod dobj aux xcomp dobj det compound nsubj ccomp acomp nsubj aux det amod dobj prep poss amod amod pobj prep compound pobj det npadvmod dep nsubj mark prep det amod nummod pobj det nsubj prep amod pobj prep mark nmod pobj nsubj aux ccomp prep pobj det nsubjpass auxpass ccomp agent det nmod advmod pobj det nmod pobj nsubj dobj advmod mark nsubj advcl conj acomp aux xcomp mark nsubj ccomp neg det compound attr det nsubj ccomp prep pobj prep det amod pobj acl appos compound appos prep det pobj det amod amod appos prep pobj cc conj det nsubj mark compound nsubj ccomp dobj advmod amod dobj amod appos aux ccomp prt prep det pobj appos npadvmod det nsubj prep compound pobj prep pobj mark nsubj acl ccomp neg det attr prep det pobj cc aux neg conj dobj nummod nsubj cc conj prep amod pobj ccomp dobj prep aux advcl aux advcl prep poss pobj cc advmod conj dobj nsubj relcl acomp prep det pobj det nsubj aux relcl prep det amod pobj compound nsubj prep det nmod compound compound compound pobj prep pobj cc amod conj ccomp mark det nsubj prep pobj prep det pobj aux ccomp dobj cc mark det nsubj prep amod pobj aux conj dobj nsubj det amod attr aux relcl det amod dobj mark poss nsubj aux neg advcl dobj prep prep pobj nsubj ccomp det advmod amod dobj prep det pobj nummod nsubj ccomp advmod npadvmod advmod acomp advcl det amod nsubj prep det compound compound pobj prep pobj prep pobj prep det compound pobj compound nsubj aux amod dobj prep det pobj poss nsubj relcl advmod acomp cc poss nsubjpass auxpass conj prep amod det amod nsubj nsubjpass aux auxpass ccomp agent det pobj acl prep det pobj cc nsubj conj det nsubj ccomp compound attr nsubj relcl det dobj det compound compound compound compound dobj acl prep det pobj aux xcomp det dobj prep det compound compound pobj nsubj ccomp aux xcomp mark nsubj ccomp aux xcomp prep det pobj cc conj det dobj nsubj compound dobj prep compound pobj ccomp mark amod compound nsubj prep det compound pobj advcl mark nsubjpass auxpass ccomp amod npadvmod mark nsubj ccomp xcomp det compound compound dobj cc mark det nsubj conj det amod dobj aux acl prep pobj det amod nsubj prep det pobj prep det amod amod amod compound compound pobj acl prt agent det nmod nmod amod amod pobj amod appos prep pobj det compound compound nsubj prep amod pobj cc poss conj prep compound compound pobj acl prep pobj prep pcomp prt det npadvmod prep advmod quantmod quantmod nsubj prep pobj advcl dobj cc det amod nsubjpass aux auxpass agent nummod pobj prep pobj prep prep det pobj acl prep det compound compound pobj prep pobj mark det nsubjpass nmod amod appos aux auxpass ccomp compound dobj aux advcl prep compound pobj cc conj det dobj mark det ccomp csubj det compound compound compound dobj aux nmod npadvmod amod compound compound attr dep nsubj advcl advmod det compound compound compound attr conj det dobj nmod nmod nummod dobj prep pobj det npadvmod prep prep det pobj compound amod compound appos prep compound compound nmod amod pobj det amod det nsubj prep nsubj aux neg pcomp advmod acl det dobj parataxis aux xcomp dobj prep compound compound pobj prep det compound compound pobj aux conj amod quantmod nummod dobj prep advmod advmod nummod compound pobj prep det compound pobj conj cc det conj aux amod compound dobj prep pobj aux advcl det amod dobj prep det pobj prep det amod nmod prep compound compound pobj prep pobj mark nsubj aux ccomp det amod quantmod compound dobj dative amod pobj acl prep pobj aux acl dobj det nsubj nsubj relcl attr prep det quantmod compound nummod compound compound pobj acl amod npadvmod det amod dobj prep det pobj prep nmod nummod compound pobj advmod conj dobj aux xcomp prep det quantmod compound nummod pobj acl advmod prep pobj acl oprd prep amod pobj nsubj cc det conj aux ccomp det dobj prep compound nummod pobj advmod quantmod compound appos aux xcomp compound compound nsubj appos prep poss case amod compound compound pobj aux ccomp det nmod compound nummod compound dobj acl agent det amod pobj cc det quantmod compound nummod amod compound conj compound compound compound appos amod npadvmod det amod nsubj nsubj aux ccomp det amod quantmod quantmod quantmod quantmod quantmod compound dobj prep amod compound pobj ccomp advmod prep pcomp det dobj prep pobj det amod cc conj nsubj nsubj advcl det nummod compound dobj det compound nsubj det amod appos prep det compound pobj nsubj aux relcl prt dobj prep compound pobj prep pcomp det amod amod pobj advmod csubj det compound compound compound dobj aux ccomp prep pcomp compound compound dobj prep det pobj prep pcomp compound dobj aux advcl nsubj aux ccomp cc conj prep amod pobj nsubj relcl dobj prep det pobj parataxis amod dobj aux advcl poss dobj cc conj det amod nsubj prep det pobj prep pobj amod nsubj aux advmod dobj nsubjpass aux auxpass relcl prep amod cc aux advmod conj dobj nsubjpass aux neg auxpass relcl prep amod nsubj conj prep pobj cc conj aux advcl xcomp compound dobj aux xcomp det dobj nsubj aux relcl prep det compound pobj prep pobj prep det pobj aux acl xcomp amod dobj cc conj det amod dobj det compound appos nsubj acl prep det pobj prep pobj aux xcomp nummod compound dobj prep det pobj cc det nsubj conj neg acomp advmod nummod nsubj det amod dobj cc advmod nummod nsubj conj advmod nummod nsubj prep det nummod pobj nsubj ccomp det dobj prep amod pobj aux advcl mark nsubj ccomp dobj mark det nsubj aux advcl prep det pobj prep advmod det nsubj pcomp cc nsubj mark amod amod nsubjpass advmod auxpass neg ccomp aux xcomp mark det nsubj ccomp acomp prep amod pobj det nsubj prep det pobj conj det amod dobj prep pobj prep pobj amod nsubj prep pobj relcl aux xcomp prep compound compound pobj cc conj mark preconj det compound nsubj cc conj advcl det nmod dobj prep pobj advcl prep pobj cc conj parataxis prep pobj conj acomp prep poss pobj det nsubj prep det compound pobj prep det pobj conj det amod attr prep det pobj prep det poss case amod pobj prep pcomp det dobj prep det amod pobj nsubj cc conj quantmod quantmod compound dobj prep amod pobj prep pobj prep prep det compound pobj appos pobj nsubj cc conj advmod advmod relcl prep aux advcl cc mark nsubj prep amod pobj advcl poss nsubj ccomp cc conj poss dobj prep pcomp det amod pobj prep det pobj det compound nsubj det npadvmod mark amod nsubjpass auxpass ccomp aux xcomp advmod nummod dobj det npadvmod prep det amod pobj prep amod pobj nsubj aux advmod amod dobj prep det amod cc conj pobj prep pobj nsubj relcl det advmod amod attr prep pobj prep pobj prep pobj cc conj prep prep det compound pobj cc det amod nsubjpass prep pobj acl prep det compound pobj det nmod amod pobj prep amod pobj appos prep amod pobj prep det compound pobj prep amod amod pobj aux auxpass conj oprd prep compound pobj cc nmod nmod amod conj prep pobj aux neg advmod amod dobj cc advmod amod cc conj conj parataxis ccomp nsubj ccomp amod dobj prep compound compound pobj nsubj aux neg nsubj ccomp aux xcomp det compound dobj mark nsubj ccomp prep det pobj prep advmod amod amod compound pobj advcl npadvmod ccomp det dobj prep compound pobj det appos prep pobj prep det pobj nsubj dobj prep pobj aux advcl compound dobj cc conj det amod dobj prep pobj compound nsubjpass det amod appos prep det amod pobj advmod appos aux advmod auxpass prep det amod pobj prep det compound pobj poss nsubj det compound npadvmod conj dobj det conj cc det compound conj prep det pobj compound appos aux advcl compound nmod amod cc conj dobj det amod compound nsubj det dobj prep det amod pobj nsubj acl prep pobj aux ccomp amod dobj prep pobj advmod cc prep det amod compound pobj nsubj det dobj prep pobj advmod nsubj advmod det compound nsubj acl amod dobj prep amod pobj ccomp amod quantmod quantmod quantmod nummod dobj advmod quantmod nummod npadvmod mark nsubjpass auxpass advcl det nsubjpass appos acl det amod dobj prep amod pobj cc conj auxpass prep pobj agent det compound pobj prep det compound pobj poss amod nsubj acomp cc amod quantmod det nsubj prep poss pobj conj prep det compound compound pobj conj neg acomp cc amod nsubj prep det pobj prep compound pobj cc det conj prep pobj aux conj compound compound dobj aux xcomp prt dobj prep pobj aux acl poss amod dobj prep pobj cc prep pobj prep compound pobj advmod advmod compound compound nsubj aux xcomp det advmod nsubj prep compound pobj cc conj aux ccomp nsubj conj cc nsubj conj prt det nsubj aux neg conj poss dobj prep pobj cc prep amod pobj prep det compound pobj nsubj advmod prep pobj det amod npadvmod prep pobj det nsubj poss dobj prep amod compound pobj nsubj amod compound dobj prep amod pobj cc compound compound conj poss nsubj prep det pobj aux acl det dobj prep pobj nsubj relcl npadvmod det amod nsubj det amod attr advmod nsubj relcl compound nsubj aux relcl prep det compound compound pobj amod nsubj aux advmod compound dobj advmod prep pobj compound nsubj ccomp dobj prep amod pobj mark nsubj advcl compound compound attr det nsubj aux det advmod amod dobj prep pcomp det compound dobj prep pcomp prt advmod advmod mark nsubj advcl advmod advmod amod nsubj prep pobj prep det pobj prep det amod compound pobj acomp prep det amod pobj nsubj aux ccomp acomp advmod cc prep det compound pobj nsubj advmod aux neg conj amod amod dobj compound compound appos det dobj aux acl advmod compound conj det advmod amod compound appos cc prep pobj conj dobj prep pobj advmod advmod dep prep pobj prep amod compound pobj prep pobj prep det amod pobj prep det pobj advmod nummod dobj prep compound nummod pobj det compound nsubj aux xcomp nsubj ccomp acomp det nsubj aux neg ccomp dobj det nsubj acl oprd mark poss compound nsubj advcl aux xcomp dobj prep det compound pobj prep det pobj advmod det nsubj relcl acomp det nsubj prep det pobj cc conj prep det pobj prep det amod pobj advmod nsubj prep nummod pobj cc conj amod compound compound amod compound dobj prep det compound pobj aux conj amod dobj prep poss amod pobj nsubj parataxis cc poss amod nsubj prep pcomp det dobj prep pobj cc conj conj det amod attr prep det pobj prep amod compound pobj amod nsubj nsubj ccomp xcomp advmod prep compound pobj prep pobj cc conj cc nsubj conj advmod advmod advmod prep aux pobj dobj compound dobj mark det nsubj prep pobj aux acl xcomp det nsubj ccomp dobj prep pobj prep compound pobj prep det pobj advmod advmod cc det nsubj prep pobj cc conj cc amod compound compound compound compound conj conj dobj prep pobj advcl aux xcomp advmod punct compound dobj dobj nsubj relcl prep poss nummod compound pobj compound nsubj det dobj prep det compound compound compound compound pobj advmod advcl nmod compound amod dobj advmod mark nsubj advcl cc det nsubj conj det dobj advmod npadvmod acomp compound nsubj aux ccomp dobj aux xcomp det amod dobj cc conj amod dobj prep det pobj cc npadvmod conj nsubj ccomp prep pobj prep pobj mark nsubj ccomp neg prep poss advmod pobj ccomp det attr prep pcomp compound compound compound dobj advmod det compound nsubj advcl dobj prep amod pobj advmod conj aux xcomp det dobj cc conj advmod nsubj acl prep pobj nsubj compound dobj det amod nsubj conj dobj prep amod pobj neg det npadvmod conj nsubj advmod aux ccomp prep det pobj mark nsubj advcl xcomp nsubj aux ccomp expl attr prep advmod det amod nsubj prep det pobj aux pcomp prep pcomp amod compound pobj cc mark nsubj advcl poss dobj advmod advmod nsubj aux prep det amod nsubj acl prep pcomp poss dobj ccomp aux auxpass xcomp agent det pobj prep compound pobj advcl dobj prep det pobj nsubj amod compound nsubj relcl auxpass ccomp aux xcomp dobj cc conj dobj compound nsubj advmod prep det pobj nsubj acl ccomp nsubj ccomp cc conj amod compound nsubj cc compound conj conj nsubj aux advmod ccomp cc conj prep pobj det aux advcl det dobj nsubj relcl det nsubj quantmod compound nummod dobj prep det pobj cc nsubj conj nsubj auxpass advmod neg dep amod attr appos cc conj acl agent pobj ccomp prep amod prep det pobj aux auxpass xcomp prep amod quantmod nummod quantmod det amod pobj prep det amod pobj prep pobj det compound nsubj prep det compound compound pobj ccomp prep pobj det nmod cc conj nsubj prep pcomp det dobj prep det compound pobj cc amod conj mark nsubj aux advcl prep amod compound compound pobj prep det compound compound pobj det compound appos cc amod conj prep det compound compound pobj nsubj relcl det dobj prep compound pobj prep det pobj compound pobj cc conj det compound dobj advcl prep pobj nummod prep amod pobj nsubjpass auxpass amod nsubj ccomp attr prep det amod pobj prep prep poss pobj acl nsubj relcl det dobj prep det pobj prep nummod amod pobj prep det nmod nmod amod pobj prep compound pobj npadvmod csubj det amod nsubj prep det pobj amod amod nummod acl prep pobj conj cc conj prep det pobj det nsubj acl amod dobj cc det conj nsubj relcl prep pcomp nsubj ccomp advmod acomp cc det nsubj prep amod pobj advmod acomp det nsubj det nummod compound compound dobj advmod prep pcomp det amod compound nsubj cc compound conj prep compound pobj prep pobj appos acl conj mark nsubj ccomp det dobj nsubj aux aux xcomp dobj nsubj aux ccomp advmod cc advmod conj aux xcomp aux xcomp dobj nsubj parataxis cc neg conj nummod cc conj npadvmod mark nsubj advcl advmod acomp advcl det dobj intj det dobj prep advmod compound nummod pobj cc det conj prep nummod amod pobj nsubj attr prep nmod case amod pobj cc det npadvmod det nmod prep pobj nsubjpass auxpass ccomp prep pcomp det amod dobj prep compound pobj appos prep det pobj compound compound dobj prep det pobj cc nsubj aux advmod prep nsubj neg ccomp prep amod pobj cc conj compound nsubj aux poss dobj conj amod dobj cc conj dobj cc det conj prep pobj nsubj nsubj aux pcomp prep pobj ccomp aux xcomp dobj aux advcl poss dobj poss nsubj cc conj cc det amod conj nsubj acl prep det amod amod pobj nsubj dobj aux xcomp prep pobj nsubj prep det amod pobj prep det compound pobj aux dobj prep poss pobj prep det amod compound pobj cc poss amod conj prep det amod pobj aux advcl poss amod dobj nsubj advmod prep amod amod amod pobj prep pobj prep det compound poss amod amod pobj cc compound nmod amod amod amod conj mark det nsubj aux advcl det amod nsubj aux poss compound dobj npadvmod nummod appos npadvmod prep det amod amod compound compound pobj prep pobj dep det amod compound dobj prep det compound pobj prep poss pobj prep pobj csubj dobj ccomp poss amod attr nsubj prep det pobj advcl prep det pobj acl agent det pobj prep pcomp det amod compound dobj nsubj poss dobj cc conj prep poss compound compound pobj advmod amod cc advmod conj prep amod nsubj prep compound pobj appos aux csubj prt advcl amod dobj nsubj advmod relcl dobj prep pobj prep det pobj aux acl dobj prep pcomp cc conj det dobj prep det pobj cc det amod conj prep pobj acl det npadvmod aux neg dobj prep pcomp det nmod amod amod dobj advmod poss nsubj aux relcl amod dobj prep pobj det nsubj dobj prep poss nummod pobj prep pobj cc nsubj ccomp det amod dobj xcomp dobj compound nsubj det compound compound appos prep pobj nsubj aux mark nsubj advcl dobj prt det compound det npadvmod amod nsubj prep det pobj advmod conj dobj conj cc conj advcl dobj prep poss pobj aux acl det dobj nsubj amod amod compound nsubj prep det nmod amod pobj prep compound pobj aux ccomp cc conj prep det pobj prep amod compound pobj cc nsubj aux conj mark nsubj prep pobj aux neg ccomp compound nsubjpass auxpass advmod ccomp prep dep pobj advmod nsubjpass auxpass advcl cc conj prep pobj advmod det nsubj mark det amod nsubjpass aux auxpass ccomp prep pobj cc mark nsubj aux conj det dobj aux acl poss dobj det npadvmod prep pobj nsubj conj amod quantmod nummod amod compound dobj cc nummod conj appos advmod advmod nsubj relcl dobj aux relcl prep pobj cc amod conj amod appos nsubjpass auxpass relcl prep pobj prep pobj prep pobj prep pobj advmod dep dobj prep pobj prep amod pobj cc nsubj mark nsubj aux ccomp det dobj aux det dobj aux xcomp prep pobj aux advcl advmod punct ccomp nsubj amod dobj mark nsubj aux neg relcl prep poss pobj prep amod pobj cc nsubj conj det amod nsubj ccomp aux xcomp advmod nsubj npadvmod advcl prep poss pobj dep nsubjpass auxpass ccomp prep det pobj prep det pobj prep pobj cc conj prep nsubj pcomp advmod acomp det npadvmod nsubj advmod advmod acomp aux xcomp advmod compound nsubj acl prep det compound pobj nsubj csubj amod dobj prep prep amod pobj aux ccomp det dobj acl compound dobj det nummod cc quantmod compound conj nsubj advmod ccomp amod dobj prep det pobj prep det pobj nsubj compound appos advmod aux ccomp aux xcomp prep det pobj advcl mark nsubj aux neg ccomp amod dobj advmod advmod mark nsubj advcl amod dobj advcl dobj cc nsubj aux conj nsubj npadvmod poss compound nsubjpass auxpass advcl prep pobj prep pobj cc det amod amod conj appos prep pobj det nsubj advmod acomp prep pobj det nsubj ccomp mark nsubj aux neg ccomp dobj aux xcomp prep pobj det nsubj aux neg ccomp dobj aux xcomp dobj nsubj dep aux xcomp amod quantmod nummod dobj prep det pobj prep prep pobj cc advmod nummod conj det compound compound dobj prep nummod pobj conj compound dobj advmod dobj nsubj aux aux ccomp prep pobj nsubj aux relcl advcl mark det compound nsubj aux neg conj compound compound attr prep pobj cc det amod compound nsubj conj poss nmod compound compound compound dobj advcl compound dobj advmod aux xcomp det dobj prep det amod pobj dobj nsubj aux ccomp aux xcomp prep prep det pobj punct ccomp nsubj ccomp poss dobj aux acl det dobj prep det amod pobj ccomp det amod nsubj prep det compound compound pobj cc det amod conj prep det amod amod pobj nsubj dobj prep det amod amod pobj prep det pobj prep det pobj nsubj aux det dobj prep pobj dative pobj nsubj relcl prep pobj npadvmod prep amod amod amod compound pobj aux aux xcomp det dobj prep pcomp cc advmod conj mark amod nsubj advcl acomp det nsubj prep pobj advmod amod npadvmod prep det pobj mark nsubjpass auxpass advcl agent det amod pobj prep pobj nummod det nsubjpass auxpass mark mark nsubj aux advcl cc conj det dobj prep pobj amod nsubjpass prep pobj aux auxpass conj xcomp det dobj conj cc conj det amod npadvmod advmod advmod advcl det dobj nsubj prep det compound compound compound compound pobj advmod det nsubjpass auxpass relcl advmod mark amod nsubj aux advcl prep det pobj aux xcomp dobj dative pobj advmod det amod nsubj prep compound pobj relcl aux xcomp det dobj nsubj advmod amod cc conj compound compound appos punct ccomp prep poss pobj appos acl prep det pobj prep pobj nsubj acl prep pobj prep pobj dobj nsubj aux relcl amod nsubj prep compound pobj compound compound compound appos parataxis acl prep pobj dobj advmod advmod prep amod pobj prep det pobj cc det conj prep pobj npadvmod nsubj prep det pobj prep compound pobj det nmod nmod amod amod attr cc conj advmod quantmod nummod dobj aux xcomp dobj prep det pobj nsubj aux relcl prep det pobj nsubj aux conj nummod dobj prep det pobj det amod amod conj prep compound pobj prep pobj cc det nsubj amod amod nsubj aux ccomp dobj nsubj advmod det compound nsubj aux ccomp dobj prep nummod amod amod pobj appos compound conj cc conj nsubj aux relcl prep det pobj nsubj aux neg advmod amod nsubjpass aux auxpass ccomp dative pobj prep det nummod pobj cc advmod nsubj aux dep advmod amod nsubj conj aux conj advmod advmod acomp nsubj cc conj aux advmod acomp mark nsubj aux ccomp acomp aux xcomp det dobj nsubjpass aux auxpass ccomp oprd prep pobj cc conj prep det amod pobj amod npadvmod advmod prep pobj cc conj dobj prep pobj cc conj nsubj nsubj aux advmod ccomp prep pobj prep pcomp compound dobj prep amod pobj cc amod conj prep amod pobj det npadvmod prep compound pobj prep poss pobj prep det amod pobj npadvmod nsubj nsubj ccomp advmod advmod prep det amod pobj aux aux dobj prep poss pobj prep pobj cc conj nsubjpass auxpass agent compound pobj dep advcl advcl nsubj conj dobj compound appos parataxis nsubj aux parataxis compound conj parataxis parataxis advcl parataxis compound conj parataxis advcl advcl advcl advcl advcl advcl advcl advcl advcl advcl advcl advcl parataxis nsubj acl ccomp advcl compound ccomp parataxis cc conj advcl xcomp amod npadvmod nummod nsubj det amod attr mark det nsubj advcl prep advmod advmod det nsubjpass auxpass pcomp det amod nsubj aux advmod aux nsubj ccomp advmod aux xcomp det dobj prep det amod compound compound pobj ccomp dep dep advcl cc conj dep prt nummod compound dobj prep pobj nsubj prep det pobj aux ccomp acomp aux advmod xcomp det dobj acl dobj prep pcomp aux xcomp dobj prep pobj det nsubj ccomp aux xcomp acomp aux advmod advmod xcomp dobj nsubj relcl dobj det nsubj acomp aux xcomp dobj prep amod pobj cc conj cc expl aux conj det amod attr prep pobj prep advmod advmod nummod quantmod pobj compound compound nsubj aux acl det amod dobj aux advcl dobj nsubjpass aux auxpass relcl nsubj relcl dobj advmod compound nsubj nsubj relcl dobj advcl det npadvmod amod dobj det amod dobj prep pobj acl prep pobj acl agent det pobj nsubj aux dobj prep det compound compound pobj cc compound compound nsubj aux conj prt aux advcl dobj prep amod pobj amod quantmod nummod npadvmod amod compound compound nsubj aux prep det amod amod pobj det amod nsubj prep compound pobj nsubj prep pobj ccomp acomp aux xcomp aux xcomp poss dobj advmod nsubjpass aux auxpass conj prep det pobj cc conj nsubj ccomp cc conj det dobj cc conj prep det pobj cc compound conj conj det dobj nsubj aux dative dobj prep mark nsubjpass aux auxpass advcl advmod aux auxpass csubj cc advmod aux conj amod dobj prep advmod pcomp cc conj compound punct aux mark det nsubj ccomp compound dobj mark nsubj advcl prt prep pobj nsubj det attr prep amod pobj acl amod dobj mark det nsubjpass aux auxpass relcl agent amod pobj nsubj relcl det dobj prep pcomp det nsubj prep det pobj aux mark amod nsubj aux neg ccomp aux xcomp dobj mark nsubj advcl acomp cc conj nsubj prep det pobj aux xcomp amod compound dobj prep compound compound pobj nsubj advmod relcl dobj prep det pobj advmod nsubj relcl prep advmod amod pobj nsubj aux neg compound dobj cc conj conj nsubj acomp cc nsubj nsubjpass aux auxpass ccomp prep det amod pobj det nsubj mark nsubj ccomp poss compound dobj cc conj poss dobj cc conj nsubj aux mark nsubj ccomp aux auxpass xcomp csubj prep pobj mark expl ccomp det dobj prep pcomp det pobj prep compound pobj cc mark nsubj advcl acomp prep pobj nsubj aux neg conj acomp aux auxpass xcomp aux xcomp advmod advmod prep pobj prep pobj advmod prep pobj conj cc amod amod conj det nsubjpass aux auxpass prep amod amod pobj nsubj relcl mark nsubjpass auxpass advcl cc conj prt nsubjpass aux advmod auxpass advmod nsubj advcl det amod dobj cc advmod conj poss dobj amod nsubj acomp prep det compound pobj conj cc conj cc amod nsubj cc amod conj aux mark det nsubj ccomp advmod advmod quantmod quantmod nummod attr prep det pobj expl ccomp det amod attr cc conj cc nsubjpass auxpass conj prep det amod pobj advmod advmod nsubj aux xcomp advmod acomp prep det pobj cc det nsubj conj advmod acomp cc nsubj det dobj cc conj prep amod pobj neg advmod nsubj prep amod pobj advmod appos det compound appos aux neg ccomp dobj cc aux auxpass conj prep prep pobj nsubj aux conj dobj cc conj prep amod pobj cc conj det dobj mark advmod advcl advmod amod dobj prep amod prep prep pobj acl agent det pobj mark advcl compound npadvmod det amod compound nsubj aux prep det amod pobj cc conj det amod dobj mark nsubj advcl acomp preconj det amod nsubj cc det conj aux dobj advmod det nsubj advcl det dobj acomp neg aux xcomp det dobj cc amod compound conj cc aux advmod amod conj prep pobj conj conj cc conj aux neg aux xcomp poss dobj intj nummod dobj prep pobj mark advcl cc nsubj aux neg dobj cc conj prep det amod pobj det compound nsubj acomp cc aux xcomp det dobj prep det compound pobj prep det amod pobj cc conj poss dobj advmod advmod mark nsubj advcl dobj cc conj acomp nsubj ccomp nummod dobj prep pobj prep pobj cc conj nsubj aux neg ccomp prep poss pobj advmod mark nsubj advmod advcl prt prep det pobj advmod cc conj prep det pobj cc det conj advcl det amod dobj cc advmod conj det attr nsubj relcl neg det amod attr advmod mark nsubj advcl acomp advcl det amod dobj prep pobj cc conj mark mark poss nsubj advcl prt prep pobj cc advmod conj dobj cc nsubj aux aux xcomp prep pcomp amod dobj acl advmod prep det pobj compound amod prep compound pobj cc amod conj acl prep det amod pobj ccomp poss nsubj prt cc conj aux acomp nsubj aux aux ccomp mark nsubj aux ccomp poss dobj dobj mark poss nsubj advcl det dobj prep poss pobj acomp nsubj aux advmod advmod ccomp advmod dobj mark nsubj advcl aux advcl det amod dobj punct